Skip to content

Commit

Permalink
Merge eb3e328 into f93391c
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Jun 30, 2022
2 parents f93391c + eb3e328 commit 67cf87a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
cmake_minimum_required(
VERSION 3.20
)

project(kalman
VERSION 0.1.0
LANGUAGES CXX
)

include(CTest)

add_library(${PROJECT_NAME}
INTERFACE
)

target_include_directories(${PROJECT_NAME}
INTERFACE
${PROJECT_SOURCE_DIR}/include/fcarouge
)

set_target_properties(${PROJECT_NAME}
PROPERTIES
CXX_STANDARD 23
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS OFF
)

install(
DIRECTORY include/fcarouge
DESTINATION include
)

0 comments on commit 67cf87a

Please sign in to comment.