This repository was archived by the owner on Sep 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathign.pro
More file actions
58 lines (48 loc) · 1.2 KB
/
Copy pathign.pro
File metadata and controls
58 lines (48 loc) · 1.2 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#-------------------------------------------------
#
# Project created by QtCreator 2013-02-03T23:13:36
#
#-------------------------------------------------
QT += network core webkitwidgets sql printsupport serialport
TARGET = ignsdk
TEMPLATE = app
CONFIG += qt
DEFINES *= _FORTIFY_SOURCE=2
QMAKE_CFLAGS_RELEASE -= -O2
QMAKE_CFLAGS_RELEASE += -O3 -Wformat -Wformat-security -fstack-protector
QMAKE_CXXFLAGS_RELEASE -= -O2
QMAKE_CXXFLAGS_RELEASE += -O3 -Wformat -Wformat-security -fstack-protector
QMAKE_LFLAGS_RELEASE -= -Wl,-O1
QMAKE_LFLAGS_RELEASE += -Wl,-O3 -Wl,-z,relro -Wl,-z,now -pie
SOURCES += src/main.cpp\
src/ign.cpp \
src/fs.cpp \
src/igndownload.cpp \
src/ignsql.cpp \
src/ignsystem.cpp \
src/ignnetwork.cpp \
src/ignprocess.cpp \
src/ignserial.cpp
HEADERS += src/ign.h \
src/fs.h \
src/igndownload.h \
src/ignsql.h \
src/ignsystem.h \
src/ignnetwork.h \
src/version.h \
src/ignjson.h \
src/ignprocess.h \
src/ignserial.h
RESOURCES += \
ign.qrc
macx{
ICON += icon/ignsdk-logo.icns
}
OTHER_FILES += \
bar-descriptor.xml
OBJECTS_DIR = ./build
MOC_DIR = ./build
RCC_DIR = ./build
DESTDIR = ./bin
DISTFILES += \
LICENSE.BSD