diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/idevicerestore/CMakeLists.txt | |
Diffstat (limited to 'vcpkg/ports/idevicerestore/CMakeLists.txt')
| -rw-r--r-- | vcpkg/ports/idevicerestore/CMakeLists.txt | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/vcpkg/ports/idevicerestore/CMakeLists.txt b/vcpkg/ports/idevicerestore/CMakeLists.txt new file mode 100644 index 0000000..cff54d9 --- /dev/null +++ b/vcpkg/ports/idevicerestore/CMakeLists.txt @@ -0,0 +1,59 @@ +cmake_minimum_required(VERSION 3.15) +project(idevicerestore C) + +include(GNUInstallDirs) + +file(GLOB_RECURSE IDEVICERESTORE_SOURCE src/*.c src/*.h) +list(FILTER IDEVICERESTORE_SOURCE EXCLUDE REGEX "sha(1|512)\\.(c|h)$") + +set(DEFINITIONS) + +list(APPEND DEFINITIONS -DPACKAGE_NAME="idevicerestore") +list(APPEND DEFINITIONS -DPACKAGE_VERSION="1.0.0") +list(APPEND DEFINITIONS -DPACKAGE_URL="https://github.com/libimobiledevice/idevicerestore") +list(APPEND DEFINITIONS -DPACKAGE_BUGREPORT="https://github.com/libimobiledevice/idevicerestore/issues") + +list(APPEND DEFINITIONS -DHAVE_REVERSE_PROXY) + +list(APPEND DEFINITIONS -DHAVE_OPENSSL) + +if(UNIX) + list(APPEND DEFINITIONS -DHAVE_REALPATH) +endif() + +if(WIN32) + list(APPEND DEFINITIONS -D_CRT_SECURE_NO_WARNINGS) + list(APPEND DEFINITIONS -DWIN32) +endif() + +find_package(CURL CONFIG REQUIRED) +find_package(unofficial-libimobiledevice CONFIG REQUIRED) +find_package(unofficial-libimobiledevice-glue CONFIG REQUIRED) +find_package(unofficial-libirecovery CONFIG REQUIRED) +find_package(libzip CONFIG REQUIRED) +find_package(OpenSSL REQUIRED) +find_package(ZLIB REQUIRED) +find_path(DIRENT_INCLUDE_DIR dirent.h REQUIRED) + +add_executable(idevicerestore ${IDEVICERESTORE_SOURCE}) +target_include_directories(idevicerestore PRIVATE + ${DIRENT_INCLUDE_DIR} +) +target_compile_definitions(idevicerestore PRIVATE ${DEFINITIONS}) +target_link_libraries(idevicerestore PRIVATE + CURL::libcurl + unofficial::libimobiledevice::libimobiledevice + unofficial::libimobiledevice-glue::libimobiledevice-glue + unofficial::libirecovery::libirecovery + libzip::zip + OpenSSL::SSL + OpenSSL::Crypto + ZLIB::ZLIB +) +if(WIN32) + find_package(unofficial-getopt-win32 REQUIRED) + target_link_libraries(idevicerestore PRIVATE unofficial::getopt-win32::getopt) +endif() + +install(TARGETS idevicerestore + RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}") |