Files
qt-creator/tests/manual/plain-cplusplus/plain-cplusplus.pro

27 lines
580 B
Prolog
Raw Normal View History

2009-10-23 12:58:39 +02:00
QT -= core gui
TARGET = plain-c++
2010-02-25 12:39:39 +01:00
DEFINES += CPLUSPLUS_WITHOUT_QT
2009-10-23 12:58:39 +02:00
macx {
CONFIG -= app_bundle
release:LIBS += -Wl,-exported_symbol -Wl,_main
}
include(../../../src/shared/cplusplus/cplusplus.pri)
# Input
2009-12-15 12:27:48 +01:00
HEADERS += Preprocessor.h
SOURCES += Preprocessor.cpp
2009-10-23 12:58:39 +02:00
SOURCES += main.cpp
unix {
debug:OBJECTS_DIR = $${OUT_PWD}/.obj/debug-shared
release:OBJECTS_DIR = $${OUT_PWD}/.obj/release-shared
debug:MOC_DIR = $${OUT_PWD}/.moc/debug-shared
release:MOC_DIR = $${OUT_PWD}/.moc/release-shared
RCC_DIR = $${OUT_PWD}/.rcc/
UI_DIR = $${OUT_PWD}/.uic/
}