1# Created by and for Qt Creator This file was created for editing the project sources only.
2# You may attempt to use it for building too, by modifying this file here.
3
4TEMPLATE = app
5TARGET = glCapsViewer
6QT += core network widgets gui
7CONFIG += c++11
8DEFINES += QT_DLL QT_NETWORK_LIB QT_WIDGETS_LIB
9
10win32 {
11    LIBS += Advapi32.lib User32.lib gdi32.lib shell32.lib opengl32.lib
12}
13
14win32:contains(QMAKE_HOST.arch, x86_64) {
15    DEFINES += WIN64
16    LIBS += "$$PWD/external/libs/x64/glew32.lib"
17    LIBS += "$$PWD/external/libs/x64/glfw3.lib"
18    DESTDIR = ./x86_64
19} else {
20    LIBS += "$$PWD/external/libs/Win32/glew32.lib"
21    LIBS += "$$PWD/external/libs/Win32/glfw3.lib"
22    DESTDIR = ./WIN32
23}
24
25debug {
26    DESTDIR = $$DESTDIR/debug/
27} else {
28    DESTDIR = $$DESTDIR/release/
29}
30
31HEADERS = \
32   $$PWD/GeneratedFiles/ui_glcapsviewer.h \
33   $$PWD/glcapsviewer_autogen/include/ui_glCapsViewer.h \
34   $$PWD/capsGroup.h \
35   $$PWD/glCapsViewer.h \
36   $$PWD/glCapsViewerCore.h \
37   $$PWD/glCapsViewerHttp.h \
38   $$PWD/internalFormatInfo.h \
39   $$PWD/internalFormatTarget.h \
40   $$PWD/resource.h \
41   $$PWD/settings.h \
42   $$PWD/settingsDialog.h \
43   $$PWD/submitDialog.h \
44   $$PWD/treeproxyfilter.h
45
46SOURCES = \
47   $$PWD/capsGroup.cpp \
48   $$PWD/glcapsviewer.cpp \
49   $$PWD/glcapsviewerCore.cpp \
50   $$PWD/glCapsViewerHttp.cpp \
51   $$PWD/internalFormatInfo.cpp \
52   $$PWD/internalFormatTarget.cpp \
53   $$PWD/main.cpp \
54   $$PWD/qrc_glCapsViewer.cpp \
55   $$PWD/settings.cpp \
56   $$PWD/settingsDialog.cpp \
57   $$PWD/submitDialog.cpp \
58   $$PWD/treeproxyfilter.cpp
59
60FORMS += ./glcapsviewer.ui
61RESOURCES += glCapsViewer.qrc
62
63INCLUDEPATH = \
64    $$PWD/. \
65    $$PWD/GeneratedFiles \
66    $$PWD/glcapsviewer_autogen/include
67INCLUDEPATH += "./external"
68
69DEPENDPATH += .
70MOC_DIR += ./GeneratedFiles/release
71OBJECTS_DIR += release
72UI_DIR += ./GeneratedFiles
73RCC_DIR += ./GeneratedFiles
74win32:RC_FILE = glCapsViewer.rc
75
76