-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathNormalmapGenerator.pro
71 lines (61 loc) · 2.83 KB
/
NormalmapGenerator.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
################################################################################
# Copyright (C) 2015 by Simon Wendsche #
# #
# This file is part of NormalmapGenerator. #
# #
# NormalmapGenerator is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 3 of the License, or #
# (at your option) any later version. #
# #
# NormalmapGenerator is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
# Sourcecode: https://github.com/Theverat/NormalmapGenerator #
################################################################################
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = NormalmapGenerator
TEMPLATE = app
QMAKE_CXXFLAGS += -fopenmp -std=c++11
LIBS += -fopenmp
SOURCES += main.cpp\
src_gui/mainwindow.cpp \
src_generators/intensitymap.cpp \
src_generators/normalmapgenerator.cpp \
src_generators/specularmapgenerator.cpp \
src_gui/graphicsscene.cpp \
src_gui/graphicsview.cpp \
src_gui/queueitem.cpp \
src_gui/queuemanager.cpp \
src_generators/gaussianblur.cpp \
src_generators/boxblur.cpp \
src_generators/ssaogenerator.cpp \
src_gui/aboutdialog.cpp \
src_gui/listwidget.cpp
HEADERS += src_gui/mainwindow.h \
src_generators/intensitymap.h \
src_generators/normalmapgenerator.h \
src_generators/specularmapgenerator.h \
src_gui/graphicsscene.h \
src_gui/graphicsview.h \
src_gui/queueitem.h \
src_gui/queuemanager.h \
src_generators/gaussianblur.h \
src_generators/boxblur.h \
src_generators/ssaogenerator.h \
src_gui/aboutdialog.h \
src_gui/listwidget.h \
src_gui/clickablelabel.h
FORMS += src_gui/mainwindow.ui \
src_gui/aboutdialog.ui
win32:RC_FILE = resources.rc
RESOURCES += \
stylesheets.qrc
target.path = /usr/local/bin
INSTALLS += target