Files
conan-build/recipes/openh264/all/test_package/CMakeLists.txt
2024-12-25 17:47:28 +03:00

8 lines
206 B
CMake

cmake_minimum_required(VERSION 3.1)
project(test_package C)
find_package(openh264 REQUIRED CONFIG)
add_executable(${PROJECT_NAME} test_package.c)
target_link_libraries(${PROJECT_NAME} openh264::openh264)