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

8 lines
218 B
CMake

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