space-game001/proj-web/thirdparty/libzip-1.11.3/examples/cmake-project/CMakeLists.txt
Vladislav Khorev d1cab1f3b3 refactoring
2026-01-09 22:33:46 +03:00

11 lines
228 B
CMake

cmake_minimum_required(VERSION 3.5)
project(cmake-example
VERSION 1.0
LANGUAGES C)
find_package(libzip 1.10 REQUIRED)
add_executable(cmake-example cmake-example.c)
target_link_libraries(cmake-example PRIVATE libzip::zip)