-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFluidRendering.pro
48 lines (40 loc) · 2.21 KB
/
FluidRendering.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
36
37
38
39
40
41
42
43
44
45
46
47
48
#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# .--, .--,
# ( ( \.---./ ) )
# '.__/o o\__.'
# {= ^ =}
# > - <
# ___________________________.""`-------`"".____________________________
# / \
# \ This file is part of Banana - a graphics programming framework /
# / Created: 2018 by Nghia Truong \
# \ <[email protected]> /
# / https://ttnghia.github.io \
# \ All rights reserved. /
# / \
# \______________________________________________________________________/
# ___)( )(___
# (((__) (__)))
#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
QT += core gui widgets
TARGET = FluidRendering
TEMPLATE = app
win32 {
BANANA_DIR = D:/Programming/Banana
}
macx {
BANANA_DIR = /Users/nghia/Programming/Banana
}
include($$BANANA_DIR/BananaCore/BananaCore.pri)
include($$BANANA_DIR/QtAppHelpers/QtAppHelpers.pri)
include($$BANANA_DIR/OpenGLHelpers/OpenGLHelpers.pri)
include($$BANANA_DIR/Simulation/Simulation.pri)
INCLUDEPATH += $$PWD/Source
HEADERS += $$files(Source/*.h, true)
SOURCES += $$files(Source/*.cpp, true)
DISTFILES += $$files(Shaders/*.glsl, true)
DISTFILES += $$files(*.txt, true)
DISTFILES += $$files(*.ini, true)
RESOURCES += Resources.qrc