4.4
This commit is contained in:
parent
3c3eb0c398
commit
495fdca699
@ -666,15 +666,18 @@ def gecode_version():
|
||||
@@GECODE_VERSION""")
|
||||
f.close()
|
||||
cxx.preprocess(file_hh,output_file=file_txt)
|
||||
f = open(file_txt)
|
||||
version = ""
|
||||
for line in f:
|
||||
if line.startswith("@@"):
|
||||
version = line[3:-2]
|
||||
break
|
||||
f.close()
|
||||
os.remove(file_hh)
|
||||
os.remove(file_txt)
|
||||
if True:
|
||||
f = open(file_txt)
|
||||
version = ""
|
||||
for line in f:
|
||||
if line.startswith("@@"):
|
||||
version = line[3:-2]
|
||||
break
|
||||
f.close()
|
||||
os.remove(file_hh)
|
||||
os.remove(file_txt)
|
||||
else:
|
||||
version = "4.4.0"
|
||||
GECODE_VERSION = version
|
||||
return version
|
||||
|
||||
|
@ -610,7 +610,7 @@ WARN_LOGFILE =
|
||||
# directories like "/usr/src/myproject". Separate the files or directories
|
||||
# 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
|
||||
# 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