Changeset 12030 in webkit for trunk/JavaScriptCore/kjs/kjs.pro
- Timestamp:
- Jan 12, 2006, 10:23:02 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/kjs.pro
r12010 r12030 14 14 !exists(string_object.lut.h):system(perl create_hash_table string_object.cpp -i >string_object.lut.h) 15 15 !exists(regexp_object.lut.h):system(perl create_hash_table regexp_object.cpp -i >regexp_object.lut.h) 16 !exists(grammar.cpp):system(bison -d -p kjsyy grammar.y && mv grammar.tab.c grammar.cpp && mv grammar.tab.h grammar.h) 16 17 } 17 18 18 19 # QMakes YACC support is strange 19 YACCSOURCES += grammar.y20 # YACCSOURCES += grammar.y 20 21 21 22 SOURCES += \ 22 23 ../kxmlcore/FastMalloc.cpp \ 23 24 ../kxmlcore/TCSystemAlloc.cpp \ 25 ../kxmlcore/HashTable.cpp \ 24 26 array_object.cpp \ 25 27 function_object.cpp \ … … 54 56 function.cpp \ 55 57 math_object.cpp \ 56 value.cpp 58 value.cpp \ 59 JSLock.cpp \ 60 grammar.cpp 57 61 58 62 !macx:unix { 59 INCLUDEPATH += .. ../pcre ../kxmlcore 63 INCLUDEPATH += .. ../pcre ../kxmlcore ../bindings 60 64 MOC_DIR = .moc 61 65 OBJECTS_DIR = .obj … … 64 68 65 69 win32 { 66 INCLUDEPATH += .. ../pcre ../kxmlcore ../ icu70 INCLUDEPATH += .. ../pcre ../kxmlcore ../bindings ../icu 67 71 QMAKE_CXXFLAGS_RELEASE += /Zm1000 68 72 QMAKE_CXXFLAGS_DEBUG += /Zm1000
Note:
See TracChangeset
for help on using the changeset viewer.