cmake_minimum_required(VERSION 3.1)
project(test_package C)

find_package(graphene CONFIG REQUIRED)

add_executable(${PROJECT_NAME} test_package.c)
target_link_libraries(${PROJECT_NAME} PRIVATE graphene::graphene)
