33 lines
713 B
Prolog
33 lines
713 B
Prolog
|
QT += core gui
|
||
|
|
||
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
|
||
|
CONFIG += c++11
|
||
|
|
||
|
# You can make your code fail to compile if it uses deprecated APIs.
|
||
|
# In order to do so, uncomment the following line.
|
||
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||
|
|
||
|
TARGET = build/jmotion-client
|
||
|
OBJECTS_DIR = build
|
||
|
MOC_DIR = build
|
||
|
RCC_DIR = build
|
||
|
|
||
|
SOURCES += \
|
||
|
src/host_dialog.cpp \
|
||
|
src/main.cpp \
|
||
|
src/common.cpp \
|
||
|
src/main_widget.cpp \
|
||
|
src/playlist_widget.cpp \
|
||
|
src/recents.cpp
|
||
|
|
||
|
HEADERS += \
|
||
|
src/common.h \
|
||
|
src/host_dialog.h \
|
||
|
src/main_widget.h \
|
||
|
src/playlist_widget.h \
|
||
|
src/recents.h
|
||
|
|
||
|
RESOURCES += \
|
||
|
res.qrc
|