RedPanda-CPP/astyle/astyle.pro

36 lines
780 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
# 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
}
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