2010-03-01 17:22:22 +00:00
|
|
|
include (ACGCommon)
|
|
|
|
|
|
|
|
|
|
include_directories (
|
|
|
|
|
../../../..
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# collect all header and source files
|
|
|
|
|
set (sources
|
|
|
|
|
./vdpmanalyzer.cc
|
|
|
|
|
)
|
|
|
|
|
|
2018-12-14 11:59:42 +01:00
|
|
|
acg_add_executable (Analyzer ${sources})
|
2010-03-01 17:22:22 +00:00
|
|
|
|
2018-12-14 11:59:42 +01:00
|
|
|
target_link_libraries (Analyzer
|
2010-03-01 17:22:22 +00:00
|
|
|
OpenMeshCore
|
|
|
|
|
OpenMeshTools
|
|
|
|
|
)
|
|
|
|
|
|