Warning, /utilities/abakus/abakus-qt.pro is written in an unsupported language. File is not indexed.
0001 TARGET = abakus 0002 0003 BUILD_DIR = build-qt 0004 RCC_DIR = build-qt/RCCFiles 0005 UI_DIR = build-qt/UICFiles 0006 MOC_DIR = build-qt/MOCFiles 0007 OBJECTS_DIR = build-qt/ObjFiles 0008 0009 CONFIG(debug, debug|release) { 0010 DESTDIR = "debug" 0011 } 0012 CONFIG(release, debug|release) { 0013 DESTDIR = "release" 0014 } 0015 0016 DEFINES += ABAKUS_QTONLY 0017 0018 # Additional import path used to resolve QML modules in Creator's code model 0019 #QML_IMPORT_PATH += /usr/lib/kde4/imports 0020 0021 QT += qml quick 0022 0023 # If your application uses the Qt Mobility libraries, uncomment the following 0024 # lines and add the respective components to the MOBILITY variable. 0025 # CONFIG += mobility 0026 # MOBILITY += 0027 0028 # Speed up launching on MeeGo/Harmattan when using applauncherd daemon 0029 # CONFIG += qdeclarative-boostable 0030 0031 LIBS += -L/usr/lib -lmpfr 0032 0033 INCLUDEPATH += src/common src/desktop 0034 0035 !exists($$BUILD_DIR) system(mkdir $$BUILD_DIR) 0036 0037 include(qmake/bison/bison.pri) 0038 BISONSOURCES = src/common/parser.yy 0039 include(qmake/flex/flex.pri) 0040 FLEXSOURCES = src/common/lexer.ll 0041 0042 # The .cpp file which was generated for your project. Feel free to hack it. 0043 SOURCES += src/desktop/main.cpp \ 0044 src/desktop/mainwindow.cpp \ 0045 src/common/settingscore.cpp \ 0046 src/common/settings.cpp \ 0047 src/common/resultmodelitem.cpp \ 0048 src/common/resultmodel.cpp \ 0049 src/common/result.cpp \ 0050 src/common/numerictypes.cpp \ 0051 src/common/numeralmodelitem.cpp \ 0052 src/common/numeralmodel.cpp \ 0053 src/common/node.cpp \ 0054 src/common/functionmodelitem.cpp \ 0055 src/common/functionmodel.cpp \ 0056 src/common/function.cpp 0057 0058 # Please do not modify the following two lines. Required for deployment. 0059 #include(qt/qmlapplicationviewer/qmlapplicationviewer.pri) 0060 #qtcAddDeployment() 0061 0062 HEADERS += \ 0063 src/desktop/mainwindow.h \ 0064 src/common/sharedptr.h \ 0065 src/common/settingscore.h \ 0066 src/common/settings.h \ 0067 src/common/resultmodelitem.h \ 0068 src/common/resultmodel.h \ 0069 src/common/result.h \ 0070 src/common/numerictypes.h \ 0071 src/common/numeralmodelitem.h \ 0072 src/common/numeralmodel.h \ 0073 src/common/node.h \ 0074 src/common/functionmodelitem.h \ 0075 src/common/functionmodel.h \ 0076 src/common/function.h 0077 0078 OTHER_FILES += src/qml-qt/* 0079 0080 qml.path = $$DESTDIR/qml 0081 qml.files += src/qml-qt/* 0082 0083 INSTALLS += qml