diff --git a/src/OpenMesh/Apps/CMakeLists.txt b/src/OpenMesh/Apps/CMakeLists.txt index c3a9c71d..80defaf7 100644 --- a/src/OpenMesh/Apps/CMakeLists.txt +++ b/src/OpenMesh/Apps/CMakeLists.txt @@ -12,6 +12,8 @@ add_subdirectory (Smoothing) add_subdirectory (Subdivider/commandlineSubdivider) add_subdirectory (Subdivider/commandlineAdaptiveSubdivider) add_subdirectory (mconvert) +add_subdirectory (VDProgMesh/mkbalancedpm) +add_subdirectory (VDProgMesh/Analyzer) # check for OpenGL, GLEW and GLUT as our required dependencies if (QT4_FOUND AND OPENGL_FOUND AND GLEW_FOUND AND GLUT_FOUND AND NOT BUILD_APPS STREQUAL OFF ) diff --git a/src/OpenMesh/Apps/VDProgMesh/Analyzer/CMakeLists.txt b/src/OpenMesh/Apps/VDProgMesh/Analyzer/CMakeLists.txt new file mode 100644 index 00000000..16c92eb6 --- /dev/null +++ b/src/OpenMesh/Apps/VDProgMesh/Analyzer/CMakeLists.txt @@ -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 +) + diff --git a/src/OpenMesh/Apps/VDProgMesh/mkbalancedpm/CMakeLists.txt b/src/OpenMesh/Apps/VDProgMesh/mkbalancedpm/CMakeLists.txt new file mode 100644 index 00000000..c0e311e4 --- /dev/null +++ b/src/OpenMesh/Apps/VDProgMesh/mkbalancedpm/CMakeLists.txt @@ -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 +) +