-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOceanSimulation.pro
42 lines (33 loc) · 1011 Bytes
/
OceanSimulation.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-09-03T11:13:23
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = OceanSimulation
TEMPLATE = app
SOURCES +=\
Source/Main.cpp \
Source/OceanRenderWidget.cpp \
Source/FFTWave.cpp \
Source/MainWindow.cpp \
Source/Controller.cpp
HEADERS += \
Include/OceanRenderWidget.h \
Include/FFTWave.h \
Include/MainWindow.h \
Include/Controller.h \
Include/Common.h
include (../../Banana/BananaCore/BananaCore.pri)
include (../../Banana/QtAppHelpers/QtAppHelpers.pri)
include (../../Banana/OpenGLHelpers/OpenGLHelpers.pri);
INCLUDEPATH += $$PWD/Include
INCLUDEPATH += $$PWD/Externals/fftw-3.3.5/include
macx {
LIBS += -lfftw3f_threads -lpthread -L$$PWD/Externals/fftw-3.3.5/lib
LIBS += -lfftw3f -L$$PWD/Externals/fftw-3.3.5/lib
}
win32 {
LIBS += -llibfftw3f-3 -L$$PWD/Externals/fftw-3.3.5/lib
}