| CONFIG += qt warn_on debug static |
| !system(which perl >/dev/null 2>&1):error("Build requires perl.") |
| !exists(lexer.lut.h):system(perl create_hash_table keywords.table -i >lexer.lut.h) |
| !exists(array_object.lut.h):system(perl create_hash_table array_object.cpp -i >array_object.lut.h) |
| !exists(math_object.lut.h):system(perl create_hash_table math_object.cpp -i >math_object.lut.h) |
| !exists(date_object.lut.h):system(perl create_hash_table date_object.cpp -i >date_object.lut.h) |
| !exists(number_object.lut.h):system(perl create_hash_table number_object.cpp -i >number_object.lut.h) |
| !exists(string_object.lut.h):system(perl create_hash_table string_object.cpp -i >string_object.lut.h) |
| !exists(regexp_object.lut.h):system(perl create_hash_table regexp_object.cpp -i >regexp_object.lut.h) |
| !exists(grammar.cpp):system(bison -d -p kjsyy grammar.y && mv grammar.tab.c grammar.cpp && mv grammar.tab.h grammar.h) |
| # QMakes YACC support is strange |
| # YACCSOURCES += grammar.y |
| ../kxmlcore/FastMalloc.cpp \ |
| ../kxmlcore/TCSystemAlloc.cpp \ |
| ../kxmlcore/HashTable.cpp \ |
| INCLUDEPATH += .. ../pcre ../kxmlcore ../bindings |
| QMAKE_CXXFLAGS_DEBUG += -ansi |
| INCLUDEPATH += .. ../pcre ../kxmlcore ../bindings ../icu |
| QMAKE_CXXFLAGS_RELEASE += /Zm1000 |
| QMAKE_CXXFLAGS_DEBUG += /Zm1000 |