CMakeLists.txt 268 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
file(GLOB_RECURSE SRC *.cpp)
add_library(locate
    SHARED
    ${SRC})

target_include_directories(locate
    PUBLIC
    state
    voxel_map
    localize
    ${PCL_INCLUDE_DIRS}
    )

target_link_libraries(locate
    PUBLIC
    state
    voxel_map
    localize
    )