Added a simple auto test for our C++ front-end.

This commit is contained in:
Roberto Raggi
2008-12-03 11:34:46 +01:00
parent 56f788ccef
commit 27f866687c
4 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
QT = core
macx:CONFIG -= app_bundle
TARGET = cplusplus0
include(../../../shared/cplusplus/cplusplus.pri)
# Input
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/
}