-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCppString.pro
More file actions
39 lines (31 loc) · 903 Bytes
/
CppString.pro
File metadata and controls
39 lines (31 loc) · 903 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
38
39
TARGET = cppstring
CONFIG -= qt
TEMPLATE = lib
DEFINES += CPPSTRING_LIBRARY
CONFIG += c++11
# 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
#-- Ensure that debug build and release build are in different directories
# the debug and release directives MUST BE IN LOWER CASE!!!
CONFIG(debug, debug|release) {
DESTDIR = $$TARGET/debug
}
CONFIG(release, debug|release) {
DESTDIR = $$TARGET/release
}
OBJECTS_DIR = $$DESTDIR/.obj
MOC_DIR = $$DESTDIR/.moc
RCC_DIR = $$DESTDIR/.qrc
UI_DIR = $$DESTDIR/.u
SOURCES += \
src/cppstring.cpp
HEADERS += \
include/cppstring_global.h \
include/cppstring.h
# Default rules for deployment.
unix
{
target.path = /usr/lib
}
!isEmpty(target.path): INSTALLS += target