mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-15 09:04:36 +00:00
32 lines
913 B
Prolog
32 lines
913 B
Prolog
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
INCLUDEPATH += ../.. ../../../../sf ../../../../code/lib/glew/include
|
|
HEADERS = meshrender.h
|
|
SOURCES = meshrender.cpp
|
|
TARGET = meshrender
|
|
DESTDIR = ../../meshlab/plugins
|
|
# the following line is needed to avoid mismatch between
|
|
# the awful min/max macros of windows and the limits max
|
|
win32:DEFINES += NOMINMAX
|
|
|
|
unix{
|
|
QMAKE_CC = gcc-3.3
|
|
QMAKE_CXX = g++-3.3
|
|
QMAKE_LINK = gcc-3.3
|
|
CONFIG += debug warn_off
|
|
}
|
|
|
|
contains(TEMPLATE,lib) {
|
|
CONFIG(debug, debug|release) {
|
|
unix:TARGET = $$member(TARGET, 0)_debug
|
|
else:TARGET = $$member(TARGET, 0)d
|
|
}
|
|
}
|
|
QT += opengl
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaint/plugins
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS extrafilters.pro
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaintplugins/extrafilters
|
|
INSTALLS += target sources
|