summaryrefslogtreecommitdiff
path: root/tests/manual/plain-cplusplus/plain-cplusplus.pro
blob: d77e233f863d8e2b44c11dd6542e9755dc205b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
QT -= core gui
TARGET = plain-c++

macx {
    CONFIG -= app_bundle
    release:LIBS += -Wl,-exported_symbol -Wl,_main
}

include(../../../src/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/
}