RedPanda-CPP/tools/consolepauser/consolepauser.pro

58 lines
996 B
Prolog
Raw Normal View History

2021-12-29 09:43:32 +08:00
QT -= gui
CONFIG += c++11 console
CONFIG -= app_bundle
2022-10-28 16:34:26 +08:00
msvc {
CONFIG += windows
}
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
}
2022-12-19 15:13:30 +08:00
win32: {
DEFINES += _WIN32_WINNT=0x0601
}
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
}
isEmpty(LIBEXECDIR) {
LIBEXECDIR = $${PREFIX}/libexec
}
2022-01-05 08:18:47 +08:00
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.
qnx: target.path = $${LIBEXECDIR}/$${APP_NAME}
else: unix:!android: target.path = $${LIBEXECDIR}/$${APP_NAME}
2021-12-29 09:43:32 +08:00
!isEmpty(target.path): INSTALLS += target