MapViewer/vendor/triangle/CMakeLists.txt

13 lines
340 B
CMake
Raw Normal View History

2021-04-16 13:16:00 +00:00
cmake_minimum_required(VERSION 3.10)
2022-05-03 16:59:28 +00:00
SET_SOURCE_FILES_PROPERTIES( "src/triangle.c" PROPERTIES LANGUAGE CXX )
2021-04-17 01:15:07 +00:00
2021-04-16 13:16:00 +00:00
add_library(triangle STATIC
2022-05-03 16:59:28 +00:00
"src/triangle.c"
2021-04-16 13:16:00 +00:00
)
target_include_directories(triangle PUBLIC
2022-05-03 16:59:28 +00:00
${CMAKE_CURRENT_LIST_DIR}/include
2021-04-16 13:16:00 +00:00
)
target_compile_definitions(triangle PUBLIC NO_TIMER TRILIBRARY REDUCED DCT_ONLY ANSI_DECLARATORS)