- update Ifc parser generator script to assert if !python3
parent
5ac2354da0
commit
19c9683b5f
|
@ -44,6 +44,10 @@
|
||||||
|
|
||||||
import sys, os, re
|
import sys, os, re
|
||||||
|
|
||||||
|
if sys.version_info < (3, 0):
|
||||||
|
print("must use python 3.0 or greater")
|
||||||
|
sys.exit(-2)
|
||||||
|
|
||||||
input_template_h = 'IFCReaderGen.h.template'
|
input_template_h = 'IFCReaderGen.h.template'
|
||||||
input_template_cpp = 'IFCReaderGen.cpp.template'
|
input_template_cpp = 'IFCReaderGen.cpp.template'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue