cmake_minimum_required(VERSION 3.15)
project(test_package C)

find_package(sqlcipher REQUIRED CONFIG)

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