vcglib/apps/metro/CMakeLists.txt

18 lines
237 B
CMake
Raw Normal View History

2021-03-25 12:43:08 +01:00
cmake_minimum_required(VERSION 3.13)
project (metro)
2021-03-25 12:43:08 +01:00
if (VCG_HEADER_ONLY)
set(SOURCES
metro.cpp
${VCG_INCLUDE_DIRS}/wrap/ply/plylib.cpp)
endif()
add_executable(metro
${SOURCES})
target_link_libraries(
metro
PUBLIC
vcglib
)