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
PodmogilnyjIvan ff4acf84be raw
2021-12-03 03:34:31 -08:00

16 lines
491 B
CMake

# Find Pangolin (https://github.com/stevenlovegrove/Pangolin)
find_package(Pangolin 0.4 REQUIRED)
include_directories(${Pangolin_INCLUDE_DIRS})
add_executable(VideoConvert main.cpp)
target_link_libraries(VideoConvert ${Pangolin_LIBRARIES})
#######################################################
## Install
install(TARGETS VideoConvert
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib
ARCHIVE DESTINATION ${CMAKE_INSTALL_PREFIX}/lib
)