view generator/parser/rxx.pri @ 248:7664de4a55e5

Fixed #23. QtD_QObjectEntity is not created dynamically for shell classes any more. Class initialization is now performed by static constructors. When wrapping QObjects returned from functions, their run-time types are now taken into account. QObjects are allocated on GC heap, a doubly-linked list is used to prevent them from been collected (arguably a better solution than allocating on C heap and adding GC ranges) Minor changes (including unnecessary).
author maxter
date Thu, 20 Aug 2009 14:47:17 +0000
parents e78566595089
children
line wrap: on
line source


isEmpty(RXXPATH):RXXPATH = $$PWD

INCLUDEPATH += $$RXXPATH

DEFINES += RXX_ALLOCATOR_INIT_0

HEADERS += $$RXXPATH/ast.h \
           $$RXXPATH/lexer.h \
           $$RXXPATH/list.h \
           $$RXXPATH/parser.h \
           $$RXXPATH/rxx_allocator.h \
           $$RXXPATH/rpp-allocator.h \
           $$RXXPATH/smallobject.h \
           $$RXXPATH/tokens.h \
           $$RXXPATH/symbol.h \
           $$RXXPATH/control.h \
           $$RXXPATH/visitor.h \
           $$RXXPATH/default_visitor.h \
           $$RXXPATH/dumptree.h \
           $$RXXPATH/binder.h \
           $$RXXPATH/codemodel.h \
           $$RXXPATH/codemodel_pointer.h \
           $$RXXPATH/codemodel_fwd.h \
           $$RXXPATH/type_compiler.h \
           $$RXXPATH/name_compiler.h \
           $$RXXPATH/declarator_compiler.h \
           $$RXXPATH/class_compiler.h \
           $$RXXPATH/codemodel_finder.h \
           $$RXXPATH/compiler_utils.h
SOURCES += $$RXXPATH/ast.cpp \
           $$RXXPATH/lexer.cpp \
           $$RXXPATH/list.cpp \
           $$RXXPATH/parser.cpp \
           $$RXXPATH/smallobject.cpp \
           $$RXXPATH/control.cpp \
           $$RXXPATH/visitor.cpp \
           $$RXXPATH/default_visitor.cpp \
           $$RXXPATH/dumptree.cpp \
           $$RXXPATH/tokens.cpp \
           $$RXXPATH/binder.cpp \
           $$RXXPATH/codemodel.cpp \
           $$RXXPATH/type_compiler.cpp \
           $$RXXPATH/name_compiler.cpp \
           $$RXXPATH/declarator_compiler.cpp \
           $$RXXPATH/class_compiler.cpp \
           $$RXXPATH/codemodel_finder.cpp \
           $$RXXPATH/compiler_utils.cpp