Revision 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC, committed by ennetws on 13 March 2015, 18:17:18 UTC
1 parent c702819
Raw File
Voxeler.pro
include($$[STARLAB])
include($$[SURFACEMESH])
include($$[CHOLMOD])

include($$[NANOFLANN])

TEMPLATE = lib
CONFIG += staticlib
QT += opengl

# Build flag
CONFIG(debug, debug|release) {
    CFG = debug
} else {
    CFG = release
}

# Library name and destination
TARGET = Voxeler
DESTDIR = $$PWD/$$CFG/lib

# Source code
SOURCES += Voxeler.cpp
HEADERS += Voxeler.h Voxel.h

SOURCES += BoundingBox.cpp
HEADERS += BoundingBox.h
back to top