RedPanda-CPP/tools/astyle/astyle.pro

51 lines
976 B
Prolog
Raw Normal View History

2021-12-30 10:06:27 +08:00
QT -= gui
2022-01-05 08:18:47 +08:00
isEmpty(APP_NAME) {
APP_NAME = RedPandaCPP
}
2021-12-30 10:06:27 +08:00
CONFIG += c++11 console
CONFIG -= app_bundle
2022-10-28 16:34:26 +08:00
msvc {
CONFIG += windows
}
2021-12-30 10:06:27 +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
SOURCES += \
ASBeautifier.cpp \
ASEnhancer.cpp \
ASFormatter.cpp \
ASLocalizer.cpp \
ASResource.cpp \
astyle_main.cpp
2022-01-05 08:18:47 +08:00
isEmpty(PREFIX) {
PREFIX = /usr/local
}
2022-01-16 15:08:54 +08:00
win32: {
2022-01-16 19:39:26 +08:00
!isEmpty(PREFIX) {
2022-01-16 15:08:54 +08:00
target.path = $${PREFIX}
}
}
2022-03-29 09:43:24 +08:00
win32-msvc {
QMAKE_CFLAGS += /source-charset:utf-8
QMAKE_CXXFLAGS += /source-charset:utf-8
}
2021-12-30 10:06:27 +08:00
# Default rules for deployment.
2022-01-05 08:18:47 +08:00
qnx: target.path = $${PREFIX}/libexec/$${APP_NAME}
else: unix:!android: target.path = $${PREFIX}/libexec/$${APP_NAME}
2021-12-30 10:06:27 +08:00
!isEmpty(target.path): INSTALLS += target
HEADERS += \
ASLocalizer.h \
astyle.h \
astyle_main.h