CMakeLists.txt 257 Bytes
Newer Older
wangdawei's avatar
wangdawei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
file(GLOB_RECURSE SOURCES *.cpp)

add_executable(test_ESKF
    ${SOURCES}
)

target_include_directories(test_ESKF PUBLIC
  ${EIGEN3_INCLUDE_DIR}
  ../lib
  ../inputs
)

target_link_libraries(test_ESKF
  ${EIGEN3_LIBRARIES}
  pthread
  jf_ESKF
  jf_inputs
)