Files
conan-build/recipes/libdeflate/pre_1.15/test_package/CMakeLists.txt
2024-12-26 16:03:17 +03:00

8 lines
220 B
CMake

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