Paolo Cignoni cignoni f98e2df811 removed useless line
2007-03-08 17:03:36 +00:00

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
}