OpenMesh cmake support git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@111 fdac6126-5c0c-442c-9429-916003d36597
22 lines
321 B
CMake
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
|
|
)
|
|
|