CMakeLists.txt 307 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 19 20 21 22
file(GLOB_RECURSE SRC *.cpp)
add_library(system
    SHARED
    ${SRC})

target_include_directories(system
    PUBLIC
    state
    navigation
    locate
    output
    ${PCL_INCLUDE_DIRS}
    )

target_link_libraries(system
    PUBLIC
    state
    navigation
    locate
    output
    localize_utils
    )