7 lines
237 B
CMake
7 lines
237 B
CMake
# Find Pangolin (https://github.com/stevenlovegrove/Pangolin)
|
|
find_package(Pangolin 0.4 REQUIRED)
|
|
include_directories(${Pangolin_INCLUDE_DIRS})
|
|
|
|
add_executable(SimplePlot main.cpp)
|
|
target_link_libraries(SimplePlot ${Pangolin_LIBRARIES})
|