This repository has been archived on 2024-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ORB_SLAM3/Thirdparty/Pangolin-0.6/examples/SimpleVideo/CMakeLists.txt
2022-01-20 20:20:08 +02:00

7 lines
239 B
CMake

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