CMakeLists.txt 230 Bytes
Newer Older
wangdawei's avatar
wangdawei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
file(GLOB_RECURSE SRC *.cpp)
add_library(navigation
    SHARED
    ${SRC})

target_include_directories(navigation
    PUBLIC
    jf_ESKF
    ${PCL_INCLUDE_DIRS}
    )

target_link_libraries(navigation
    PUBLIC
    jf_ESKF
    )