mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-20 11:26:11 +00:00
At the moment all you can do is paint a little bit with the pen with different colors. (I have had a little trouble committing the files so i don't know if and how often i have written this text, sorry)
39 lines
869 B
Prolog
Executable File
39 lines
869 B
Prolog
Executable File
# Diese Datei wurde mit dem qmake-Manager von KDevelop erstellt.
|
|
# -------------------------------------------
|
|
# Unterordner relativ zum Projektordner: .
|
|
# Das Target ist eine Anwendung:
|
|
|
|
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
|
|
unix{
|
|
QMAKE_CC = gcc
|
|
QMAKE_CXX = g++
|
|
QMAKE_LINK = gcc
|
|
CONFIG += warn_off debug_and_release
|
|
}
|
|
contains(TEMPLATE,lib){
|
|
CONFIG(debug, debug|release){
|
|
unix{
|
|
TARGET = $$member(TARGET, 0)_debug
|
|
}
|
|
else{
|
|
TARGET = $$member(TARGET, 0)d
|
|
}
|
|
}
|
|
}
|
|
win32{
|
|
SOURCES += paintbox.cpp
|
|
DEFINES += NOMINMAX
|
|
}
|