-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdelaycut.pro
More file actions
56 lines (45 loc) · 1.27 KB
/
Copy pathdelaycut.pro
File metadata and controls
56 lines (45 loc) · 1.27 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
QT += core gui widgets
CONFIG += qt console c++11
TARGET = delaycut
TEMPLATE = app
INCLUDEPATH += src
SOURCES += src/main.cpp\
src/delaycut.cpp \
src/delayac3.cpp \
src/dragdroplineedit.cpp \
src/frame.cpp
HEADERS += src/delaycut.h \
src/sil48.h \
src/delayac3.h \
src/dc_types.h \
src/dragdroplineedit.h \
src/frame.h
FORMS += src/delaycut.ui
win32 {
RESOURCES += src/icon_ico.qrc
RC_FILE = src/delaycut.rc
}
!win32 {
QMAKE_CXXFLAGS += -Wno-unused-but-set-variable
RESOURCES += src/icon_png.qrc
target.path = /usr/bin
INSTALLS += target
}
win32-g++* {
QMAKE_CXXFLAGS += -Wno-unused-but-set-variable
!contains(QMAKE_HOST.arch, x86_64):QMAKE_LFLAGS += -Wl,--large-address-aware
}
win32-msvc* {
QMAKE_CXXFLAGS += /bigobj
!contains(QMAKE_HOST.arch, x86_64):QMAKE_LFLAGS += /LARGEADDRESSAWARE
}
macx {
ICON = src/icon.icns
#If you are using qt from brew, remove line below
QMAKE_APPLE_DEVICE_ARCHS = x86_64 arm64
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.15
}
QMAKE_CLEAN += qrc_icon_ico.cpp \
qrc_icon_ico.o \
qrc_icon_png.cpp \
qrc_icon_png.o