RedPanda-CPP/tools/consolepauser/consolepauser.pro

48 lines
870 B
Prolog
Raw Normal View History

2021-12-29 09:43:32 +08:00
QT -= gui
CONFIG += c++11 console
CONFIG -= app_bundle
2022-01-05 08:18:47 +08:00
isEmpty(APP_NAME) {
APP_NAME = RedPandaCPP
}
2021-12-30 08:59:10 +08:00
2021-12-29 09:43:32 +08:00
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
win32: {
SOURCES += \
main.windows.cpp
}
unix: {
SOURCES += \
main.unix.cpp
}
# macOS does not provide rt library, only use it for Linux
linux: {
LIBS+= \
-lrt
}
2021-12-29 09:43:32 +08:00
CONFIG += lrelease
CONFIG += embed_translations
2022-01-05 08:18:47 +08:00
isEmpty(PREFIX) {
PREFIX = /usr/local
}
2022-01-16 15:08:54 +08:00
win32: {
!isEmpty(PREFIX) {
target.path = $${PREFIX}
}
}
2021-12-29 09:43:32 +08:00
# Default rules for deployment.
2022-01-05 09:08:44 +08:00
qnx: target.path = $${PREFIX}/libexec/$${APP_NAME}
else: unix:!android: target.path = $${PREFIX}/libexec/$${APP_NAME}
2021-12-29 09:43:32 +08:00
!isEmpty(target.path): INSTALLS += target