-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQtLightAndChill.pro
More file actions
45 lines (33 loc) · 1.03 KB
/
QtLightAndChill.pro
File metadata and controls
45 lines (33 loc) · 1.03 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
#-------------------------------------------------
#
# Project created by QtCreator 2016-05-28T19:04:35
#
#-------------------------------------------------
QT += core gui serialport network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QtLightAndChill
TEMPLATE = app
SOURCES += main.cpp\
http-parser/http_parser.c \
qhttpserver/qhttpconnection.cpp \
qhttpserver/qhttprequest.cpp \
qhttpserver/qhttpresponse.cpp \
qhttpserver/qhttpserver.cpp \
lightandchill.cpp
HEADERS += http-parser/http_parser.h \
qhttpserver/qhttpconnection.h \
qhttpserver/qhttprequest.h \
qhttpserver/qhttpresponse.h \
qhttpserver/qhttpserver.h \
qhttpserver/qhttpserverapi.h \
qhttpserver/qhttpserverfwd.h \
lightandchill.h \
FORMS += lightandchill.ui
# BASS
win32: LIBS += -L$$PWD/dep/bass/ -lbass
INCLUDEPATH += $$PWD/dep/bass
DEPENDPATH += $$PWD/dep/bass
# BASSWASAPI
win32: LIBS += -L$$PWD/dep/basswasapi/ -lbasswasapi
INCLUDEPATH += $$PWD/dep/basswasapi
DEPENDPATH += $$PWD/dep/basswasapi