Files
openmesh/src/OpenMesh/Apps/Decimating/commandlineDecimater/CMakeLists.txt

22 lines
319 B
CMake
Raw Normal View History

include (ACGCommon)
include_directories (
../../../..
${CMAKE_CURRENT_SOURCE_DIR}
)
set (targetName commandlineDecimater)
# collect all header and source files
set (sources
../decimater.cc
)
acg_add_executable (${targetName} ${sources})
target_link_libraries (${targetName}
OpenMeshCore
OpenMeshTools
)