4.4
This commit is contained in:
parent
3c3eb0c398
commit
495fdca699
@ -666,15 +666,18 @@ def gecode_version():
|
|||||||
@@GECODE_VERSION""")
|
@@GECODE_VERSION""")
|
||||||
f.close()
|
f.close()
|
||||||
cxx.preprocess(file_hh,output_file=file_txt)
|
cxx.preprocess(file_hh,output_file=file_txt)
|
||||||
f = open(file_txt)
|
if True:
|
||||||
version = ""
|
f = open(file_txt)
|
||||||
for line in f:
|
version = ""
|
||||||
if line.startswith("@@"):
|
for line in f:
|
||||||
version = line[3:-2]
|
if line.startswith("@@"):
|
||||||
break
|
version = line[3:-2]
|
||||||
f.close()
|
break
|
||||||
os.remove(file_hh)
|
f.close()
|
||||||
os.remove(file_txt)
|
os.remove(file_hh)
|
||||||
|
os.remove(file_txt)
|
||||||
|
else:
|
||||||
|
version = "4.4.0"
|
||||||
GECODE_VERSION = version
|
GECODE_VERSION = version
|
||||||
return version
|
return version
|
||||||
|
|
||||||
|
@ -610,7 +610,7 @@ WARN_LOGFILE =
|
|||||||
# directories like "/usr/src/myproject". Separate the files or directories
|
# directories like "/usr/src/myproject". Separate the files or directories
|
||||||
# with spaces.
|
# with spaces.
|
||||||
|
|
||||||
INPUT = /usr/local/include/gecode
|
INPUT = /usr/include/gecode
|
||||||
|
|
||||||
# This tag can be used to specify the character encoding of the source files
|
# This tag can be used to specify the character encoding of the source files
|
||||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
||||||
|
23233
packages/gecode/dev/extractor/xml/namespaceGecode.xml
Normal file
23233
packages/gecode/dev/extractor/xml/namespaceGecode.xml
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user