https://github.com/ialhashim/topo-blend
Raw File
Tip revision: 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC
Create README.md
Tip revision: 39b1361
voxel_resampler.pro
include($$[STARLAB])
include($$[SURFACEMESH])
include($$[CHOLMOD])

include($$[NANOFLANN])
StarlabTemplate(plugin)

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

# Voxeler library
LIBS += -L$$PWD/../Voxeler/$$CFG/lib -lVoxeler
INCLUDEPATH += ../Voxeler

# DynamicVoxel library
LIBS += -L$$PWD/../DynamicVoxel/$$CFG/lib -lDynamicVoxel
INCLUDEPATH += ../DynamicVoxel

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