Files
openmesh/src/OpenMesh/Apps/Subdivider/commandlineSubdivider/CMakeLists.txt
Jan Möbius c0eed05614 Dennis:
OpenMesh cmake support

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@111 fdac6126-5c0c-442c-9429-916003d36597
2009-05-01 21:17:01 +00:00

22 lines
321 B
CMake

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