RedPanda-CPP/libs/redpanda_qt_utils/redpanda_qt_utils.pro

32 lines
556 B
Prolog
Raw Normal View History

2022-09-25 16:07:52 +08:00
TEMPLATE = lib
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
# without `c++14` old versions of qmake will explicitly set `-std=gnu++98`
CONFIG += c++14 c++17
2022-09-25 16:07:52 +08:00
CONFIG += nokey
2022-09-25 17:43:31 +08:00
CONFIG += staticlib
2022-09-25 16:07:52 +08:00
win32: {
DEFINES += _WIN32_WINNT=0x0501
2022-09-25 16:07:52 +08:00
}
gcc {
QMAKE_CXXFLAGS_RELEASE += -Werror=return-type
QMAKE_CXXFLAGS_DEBUG += -Werror=return-type
}
msvc {
DEFINES += NOMINMAX
}
2022-09-26 11:18:43 +08:00
SOURCES += qt_utils/utils.cpp \
qt_utils/charsetinfo.cpp
2022-09-25 16:07:52 +08:00
2022-09-26 11:18:43 +08:00
HEADERS += qt_utils/utils.h \
qt_utils/charsetinfo.h
TRANSLATIONS += \
qt_utils_zh_CN.ts