OM/Apps/VDProgMesh: CmakeLists for Analyzer and mkbalancedpm added

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@285 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Ellen Dekkers
2010-03-01 17:22:22 +00:00
parent 18a7643f6f
commit 6176bdb235
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
include (ACGCommon)
include_directories (
../../../..
${CMAKE_CURRENT_SOURCE_DIR}
)
set (targetName Analyzer)
# collect all header and source files
set (sources
./vdpmanalyzer.cc
)
acg_add_executable (${targetName} ${sources})
target_link_libraries (${targetName}
OpenMeshCore
OpenMeshTools
)

View File

@@ -0,0 +1,21 @@
include (ACGCommon)
include_directories (
../../../..
${CMAKE_CURRENT_SOURCE_DIR}
)
set (targetName mkbalancedpm)
# collect all header and source files
set (sources
./mkbalancedpm.cc
)
acg_add_executable (${targetName} ${sources})
target_link_libraries (${targetName}
OpenMeshCore
OpenMeshTools
)