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)