Skip to content

Commit

Permalink
[cmake] minor format consistency (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge authored Aug 22, 2022
1 parent 9bb2512 commit d1d0b7e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@ FetchContent_MakeAvailable(eigen fmt)

add_library(kalman INTERFACE)

add_library(main source/main.cpp)
add_library(main "source/main.cpp")

target_include_directories(kalman INTERFACE "include"
"support/include/fcarouge")

add_executable(
kalman_test_driver
test/eigen/f.cpp
test/eigen/h.cpp
test/eigen/initialization.cpp
test/f.cpp
test/format.cpp
test/h.cpp
test/initialization.cpp)
"test/eigen/f.cpp"
"test/eigen/h.cpp"
"test/eigen/initialization.cpp"
"test/f.cpp"
"test/format.cpp"
"test/h.cpp"
"test/initialization.cpp")

target_link_libraries(kalman_test_driver PRIVATE eigen fmt kalman main)

set_target_properties(
kalman_test_driver
PROPERTIES CXX_STANDARD 23
PROPERTIES CXX_STANDARD "23"
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS OFF)

Expand Down

0 comments on commit d1d0b7e

Please sign in to comment.