mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-18 02:24:38 +00:00
27 lines
648 B
Prolog
27 lines
648 B
Prolog
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
CONFIG += debug_and_release
|
|
INCLUDEPATH += ../.. ../../../../sf ../../../../code/lib/glew/include
|
|
HEADERS = editsegment.h cutting.h curvaturetensor.h meshcutdialog.h colorpicker.h
|
|
SOURCES = editsegment.cpp ../../../../code/lib/glew/src/glew.c meshcutdialog.cpp colorpiker.cpp
|
|
TARGET = editsegment
|
|
DESTDIR = ../../meshlab/plugins
|
|
DEFINES += GLEW_STATIC
|
|
QT += opengl
|
|
RESOURCES = meshlab.qrc
|
|
FORMS+=meshcutdialog.ui
|
|
|
|
contains(TEMPLATE,lib){
|
|
CONFIG(debug, debug|release){
|
|
unix{
|
|
TARGET = $$member(TARGET, 0)_debug
|
|
}
|
|
else{
|
|
TARGET = $$member(TARGET, 0)d
|
|
}
|
|
}
|
|
}
|
|
win32{
|
|
DEFINES += NOMINMAX
|
|
}
|