30 lines
634 B
Prolog
30 lines
634 B
Prolog
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
|
|
|
|
TARGET = miniblink
|
|
TEMPLATE = app
|
|
DESTDIR = $$PWD/../bin
|
|
|
|
CONFIG += warn_off
|
|
HEADERS += widget.h
|
|
SOURCES += main.cpp widget.cpp
|
|
FORMS += widget.ui
|
|
|
|
INCLUDEPATH += $$PWD/miniblink
|
|
include ($$PWD/miniblink/miniblink.pri)
|
|
|
|
#自动拷贝文件
|
|
src_file = $$PWD/file/*
|
|
dst_file = $$DESTDIR
|
|
win32 {
|
|
#转换斜杠 / 到 \\
|
|
src_file ~= s,/,\\,g
|
|
dst_file ~= s,/,\\,g
|
|
dst_file2 ~= s,/,\\,g
|
|
QMAKE_POST_LINK += copy $$src_file $$dst_file
|
|
}
|
|
unix {
|
|
QMAKE_POST_LINK += cp -r -f $$src_file $$dst_file
|
|
}
|