-
Notifications
You must be signed in to change notification settings - Fork 210
/
Copy pathexamplesimplest.pro
35 lines (24 loc) · 1.31 KB
/
examplesimplest.pro
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
#-------------------------------------------------
#
# Project created by QtCreator 2017-10-20T14:01:10
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = examplesimplest
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../framelesswindow/release/ -lframelesswindow
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../framelesswindow/debug/ -lframelesswindow
else:macx: LIBS += -L$$OUT_PWD/../framelesswindow/ -lframelesswindow
INCLUDEPATH += $$PWD/../framelesswindow
DEPENDPATH += $$PWD/../framelesswindow
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../framelesswindow/release/libframelesswindow.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../framelesswindow/debug/libframelesswindow.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../framelesswindow/release/framelesswindow.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../framelesswindow/debug/framelesswindow.lib
else:macx: PRE_TARGETDEPS += $$OUT_PWD/../framelesswindow/libframelesswindow.a
include (../projectinclude/common.pri)