Files
chenzhen 222dda1e43 1,新增“App_ThermalImageSystem”;
2,新增“Apps”;
3,新增“Common”;
4,新增“FileList”;
5,新增“MediaX”;
6,新增“OpenSource”;
7,新增“Samples”;
8,新增“SoftwareBusinessLines”.
2026-02-14 23:03:23 +08:00

47 lines
1.1 KiB
Plaintext

#QT += core gui
#greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += \
$$PWD/./3rdParty/GLFW \
$$PWD/./3rdParty/GLEW \
SOURCES += \
$$PWD/OpenGLView.cpp \
HEADERS += \
$$PWD/OpenGLView.h \
win32{
contains(DEFINES,WIN64){
LIBS += -lOpengl32 -luser32
#
LIBS += -L$$PWD/./3rdParty/GLFW/lib/x64/lib-vc2015/ -lglfw3dll
INCLUDEPATH += $$PWD/./3rdParty/GLFW/lib/x64/lib-vc2015
DEPENDPATH += $$PWD/./3rdParty/GLFW/lib/x64/lib-vc2015
#
LIBS += -L$$PWD/./3rdParty/GLEW/lib/Release/x64/ -lglew32
}else{
LIBS += -lOpengl32 -luser32
#
LIBS += -L$$PWD/./3rdParty/GLFW/lib/x86/lib-vc2015/ -lglfw3dll
INCLUDEPATH += $$PWD/./3rdParty/GLFW/lib/x86/lib-vc2015
DEPENDPATH += $$PWD/./3rdParty/GLFW/lib/x86/lib-vc2015
#
LIBS += -L$$PWD/./3rdParty/GLEW/lib/Release/x86/ -lglew32
}
}