Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/9
9 lines
255 B
CMake
9 lines
255 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(test_package LANGUAGES C)
|
|
|
|
find_package(xorg REQUIRED CONFIG)
|
|
find_package(vaapi REQUIRED CONFIG)
|
|
|
|
add_executable(test_package test_package.c)
|
|
target_link_libraries(test_package PRIVATE vaapi::vaapi xorg::xorg)
|