2019-12-25 10:53:19 +08:00
|
|
|
#-------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Project created by QtCreator 2019-08-31T11:16:39
|
|
|
|
|
# App皮肤文件
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
|
|
QT -= gui
|
|
|
|
|
|
2020-05-26 18:14:08 +08:00
|
|
|
# Capture whether this is a release/debug build.
|
|
|
|
|
CONFIG(debug, debug|release) {
|
|
|
|
|
# Target name.
|
2021-05-15 17:36:33 +08:00
|
|
|
TARGET = $$join(TARGET,,,d)
|
2020-05-26 18:14:08 +08:00
|
|
|
}
|
|
|
|
|
|
2019-12-25 10:53:19 +08:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
|
|
DEFINES += SKIN_LIBRARY
|
|
|
|
|
|
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
|
|
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
|
|
|
|
# depend on your compiler). Please consult the documentation of the
|
|
|
|
|
# deprecated API in order to know how to port your code away from it.
|
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
|
|
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
skin.cpp
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
skin.h
|
|
|
|
|
|
|
|
|
|
CONFIG += resources_big
|
|
|
|
|
|
|
|
|
|
unix {
|
|
|
|
|
target.path = /usr/lib
|
|
|
|
|
INSTALLS += target
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-15 17:36:33 +08:00
|
|
|
|
|
|
|
|
DESTDIR = $$PWD/../bin
|
2019-12-25 10:53:19 +08:00
|
|
|
MOC_DIR = $$PWD/../build
|
|
|
|
|
OBJECTS_DIR = $$PWD/../build
|
|
|
|
|
|
|
|
|
|
DEFINES += QtSkin
|
|
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
|
images.qrc
|
|
|
|
|
|
2020-02-22 19:59:28 +08:00
|
|
|
win32|win64 {
|
2019-12-25 10:53:19 +08:00
|
|
|
src_dir = $$PWD\\*.h
|
2021-05-15 17:36:33 +08:00
|
|
|
dst_dir = $$PWD\\..\\bin\\include\\
|
2019-12-25 10:53:19 +08:00
|
|
|
# dst_dir 最后的 \\ 是必须的,用来标示 xcopy 到一个文件夹,若不存在,创建之
|
|
|
|
|
|
|
|
|
|
# Replace slashes in paths with backslashes for Windows
|
|
|
|
|
src_dir ~= s,/,\\,g
|
|
|
|
|
dst_dir ~= s,/,\\,g
|
|
|
|
|
|
|
|
|
|
system(xcopy $$src_dir $$dst_dir /y /e)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unix {
|
|
|
|
|
src_dir = $$PWD/*.h
|
2021-05-15 17:36:33 +08:00
|
|
|
dst_dir = $$PWD/../bin/include/
|
2019-12-25 10:53:19 +08:00
|
|
|
|
|
|
|
|
!exists($$dst_dir): system(mkdir -p $$dst_dir)
|
|
|
|
|
|
|
|
|
|
system(cp $$src_dir $$dst_dir -arf )
|
|
|
|
|
}
|
|
|
|
|
|