Files
ORB_SLAM3_Win/Thirdparty/Pangolin-0.6/examples/SimpleDisplay/CMakeLists.txt
2022-01-20 20:20:08 +02:00

8 lines
245 B
CMake

# Find Pangolin (https://github.com/stevenlovegrove/Pangolin)
find_package(Pangolin 0.4 REQUIRED)
include_directories(${Pangolin_INCLUDE_DIRS})
add_executable(SimpleDisplay main.cpp)
target_link_libraries(SimpleDisplay ${Pangolin_LIBRARIES} )