Geometry/CMakeLists.txt

28 lines
568 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.14)
2023-12-31 14:25:18 +01:00
2023-12-31 15:06:43 +01:00
project(Geometry VERSION 0.1 LANGUAGES CXX)
2023-12-31 19:17:56 +01:00
include(FetchContent)
2023-12-31 15:06:43 +01:00
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
2023-12-31 19:17:56 +01:00
include(CTest)
2023-12-31 15:06:43 +01:00
endif ()
2023-12-31 14:25:18 +01:00
2023-12-31 19:17:56 +01:00
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME OR GEOMETRY_BUILD_TESTING)
add_subdirectory(tests)
endif ()
2023-12-31 14:48:12 +01:00
2023-12-31 19:17:56 +01:00
set(CMAKE_CXX_STANDARD 17)
FetchContent_Declare(
eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
GIT_TAG 3.4.0
)
FetchContent_MakeAvailable(eigen)
2023-12-31 14:30:21 +01:00
2023-12-31 15:06:43 +01:00
add_subdirectory(src)
2023-12-31 14:48:12 +01:00
2023-12-31 16:05:04 +01:00
add_subdirectory(apps)