2010-04-28 13:14:14 +00:00
|
|
|
include (ACGCommon)
|
|
|
|
|
|
|
|
|
|
include_directories (
|
|
|
|
|
../../..
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# collect all header and source files
|
|
|
|
|
acg_append_files (headers "*.hh" .)
|
|
|
|
|
acg_append_files (sources "*.cc" .)
|
|
|
|
|
|
2018-12-14 11:59:42 +01:00
|
|
|
acg_add_executable (Dualizer ${headers} ${sources})
|
2010-04-28 13:14:14 +00:00
|
|
|
|
2018-12-14 11:59:42 +01:00
|
|
|
target_link_libraries (Dualizer
|
2010-04-28 13:14:14 +00:00
|
|
|
OpenMeshCore
|
|
|
|
|
OpenMeshTools
|
|
|
|
|
)
|
|
|
|
|
|