-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhsitho.pro
More file actions
40 lines (32 loc) · 815 Bytes
/
hsitho.pro
File metadata and controls
40 lines (32 loc) · 815 Bytes
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
# General
TARGET = hsitho
DESTDIR = .
CONFIG += c++11
CONFIG -= app_bundle
# QT Specific
QT += gui
QT += widgets
QT += opengl
QT += core
# Project specific files
SOURCES += ./src/*.cpp \
./src/nodes/*.cpp \
./nodeEditor/*.cpp
HEADERS += ./include/*.hpp \
./include/nodes/*.hpp \
./nodeEditor/*.hpp
FORMS += ./ui/mainwindow.ui
INCLUDEPATH += . ./include \
./include/nodes \
./nodeEditor \
/usr/local/include
OTHER_FILES += ./shaders/* \
./libs/* \
./nodeEditor/README.md \
./README.md
#LIBS += -L./libs -lnodes
OBJECTS_DIR = ./obj
MOC_DIR = ./moc
DEFINES += NODE_EDITOR_SHARED
QMAKE_CXXFLAGS_WARN_ON += -Wno-unused-parameter \
-Wno-unused-function