blob: e5c662e0704358a7c82a545141ac79fcfff0fc6a (
plain)
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
|
TEMPLATE = app
CONFIG -= debug_and_release qt
CONFIG += console
CONFIG -= app_bundle
CONFIG += silent #Comment this out for verbose output
#CONFIG += deploy #Uncomment this to create a release build or by running this from the terminal: qmake CONFIG+=deploy
deploy {
message("release build")
CONFIG -= debug
CONFIG += release
} else {
message("debug build")
CONFIG += debug #This adds -g to the compiler flags so valgrind can locate the exact line.
CONFIG -= release
}
!msvc {
!macx { #TODO: better clang support
#QMAKE_LFLAGS += -static-libgcc #TODO: Only static link when targeting Windows and building with MinGW (natively or cross-compile)
}
}
TARGET = libembroidery-convert
OBJECTS_DIR = .obj
MOC_DIR = .moc
INCLUDEPATH += \
../libembroidery \
../libcgeometry \
$$PWD \
SOURCES += libembroidery-convert-main.c
include( ../libembroidery/libembroidery.pri )
#Install Linux/Unix
unix:!macx {
QMAKE_STRIP = echo #Suppress strip errors "File format not recognized"
QMAKE_DEL_DIR += --ignore-fail-on-non-empty #Suppress rmdir errors "Directory not empty"
convertbin.path = "/usr/bin"
convertbin.files = "libembroidery-convert"
convertbin.extra = "strip libembroidery-convert; cp -f libembroidery-convert /usr/bin/libembroidery-convert" #ensure the binary gets stripped of debug symbols
INSTALLS += convertbin \
}
|