mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-31 20:23:20 -04:00
9 lines
225 B
CMake
9 lines
225 B
CMake
cmake_minimum_required(VERSION 3.8)
|
|
project(conan-example)
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup()
|
|
|
|
add_executable(${PROJECT_NAME} main.cpp)
|
|
target_link_libraries(${PROJECT_NAME} ${CONAN_LIBS})
|