-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVBE-Profiler.pro
38 lines (30 loc) · 986 Bytes
/
VBE-Profiler.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
QT -= core gui
TARGET = VBE-Profiler
TEMPLATE = lib
CONFIG += staticlib
unix {
target.path = /usr/lib
INSTALLS += target
}
INCLUDEPATH += include src
include(../VBE/VBE.pri)
include(../VBE-Scenegraph/VBE-Scenegraph.pri)
LIBS += -lGLEW -lGL -lSDL2
QMAKE_CXXFLAGS += -std=c++0x -fno-exceptions
OTHER_FILES += \
VBE-Profiler.pri
HEADERS += \
include/VBE-Profiler/profiler.hpp \
include/VBE-Profiler/VBE-Profiler.hpp \
include/VBE-Profiler/profiler/Profiler.hpp \
include/VBE-Profiler/profiler/imgui.h \
include/VBE-Profiler/profiler/imgui_internal.h \
include/VBE-Profiler/profiler/imconfig.h \
include/VBE-Profiler/profiler/stb_textedit.h \
include/VBE-Profiler/profiler/stb_truetype.h \
include/VBE-Profiler/profiler/stb_rect_pack.h
SOURCES += \
src/VBE-Profiler/profiler/Profiler.cpp \
src/VBE-Profiler/profiler/imgui.cpp \
src/VBE-Profiler/profiler/imgui_demo.cpp \
src/VBE-Profiler/profiler/imgui_draw.cpp