mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-20 11:26:11 +00:00
30 lines
580 B
Prolog
Executable File
30 lines
580 B
Prolog
Executable File
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
INCLUDEPATH += ../.. ../../../../sf ../../../../code/lib/glew/include
|
|
HEADERS = editpaint.h \
|
|
colorwid.h \
|
|
ui_painttoolbox.h
|
|
SOURCES = editpaint.cpp ../../../../code/lib/glew/src/glew.c \
|
|
paintbox.cpp
|
|
TARGET = editpaint
|
|
DESTDIR = ../../meshlab/plugins
|
|
DEFINES += GLEW_STATIC
|
|
QT += opengl
|
|
RESOURCES = meshlab.qrc
|
|
CONFIG += debug_and_release
|
|
|
|
contains(TEMPLATE,lib){
|
|
CONFIG(debug, debug|release){
|
|
unix{
|
|
TARGET = $$member(TARGET, 0)_debug
|
|
}
|
|
else{
|
|
TARGET = $$member(TARGET, 0)d
|
|
}
|
|
}
|
|
}
|
|
win32{
|
|
DEFINES += NOMINMAX
|
|
}
|