forked from daodaoliang/NEncryptionKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNEncryptionKit.pro
More file actions
37 lines (30 loc) · 897 Bytes
/
NEncryptionKit.pro
File metadata and controls
37 lines (30 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#-------------------------------------------------
#
# Project created by QtCreator 2016-08-03T11:12:42
#
#-------------------------------------------------
QT -= gui
TARGET = NEncryptionKit
TEMPLATE = lib
DEFINES += NENCRYPTIONKIT_LIBRARY
# 导入源码
include($$PWD/NEncryptionKit_src.pri)
# 设置版本信息
RC_FILE += ./NEncryptionKit_resource.rc
# 设定编译输出路径
win32{
CONFIG += debug_and_release
CONFIG(release, debug|release) {
target_path = ./build_/dist
} else {
target_path = ./build_/debug
}
DESTDIR = ./../bin
MOC_DIR = $$target_path/moc
RCC_DIR = $$target_path/rcc
OBJECTS_DIR = $$target_path/obj
}
# 输出编译套件信息
message(Qt version: $$[QT_VERSION])
message(Qt is installed in $$[QT_INSTALL_PREFIX])
message(the NEncryptionKit will create in folder: $$target_path)