mirror of
https://github.com/bensuperpc/astar.git
synced 2026-05-05 19:05:24 +02:00
7d81e22900
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
16 lines
311 B
CMake
Executable File
16 lines
311 B
CMake
Executable File
cmake_minimum_required(VERSION 3.14.0)
|
|
|
|
include(FetchContent)
|
|
|
|
find_package(zlib QUIET)
|
|
|
|
set(ZLIB_LIBRARY zlib)
|
|
|
|
if (NOT zlib_FOUND)
|
|
FetchContent_Declare(
|
|
zlib
|
|
GIT_REPOSITORY https://github.com/madler/zlib.git
|
|
GIT_TAG v1.2.13
|
|
)
|
|
FetchContent_MakeAvailable(zlib)
|
|
endif() |