mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 16:25:45 +00:00
17 lines
395 B
CMake
17 lines
395 B
CMake
# Disable tests in all externals supporting the standard option name
|
|
set(BUILD_TESTING OFF)
|
|
|
|
# Build only static externals
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
|
|
# QuaZip
|
|
include(CPM)
|
|
set(CPM_SOURCE_CACHE ${CMAKE_SOURCE_DIR}/.cache/cpm)
|
|
set(CPM_USE_LOCAL_PACKAGES ON)
|
|
|
|
CPMAddPackage(
|
|
NAME QuaZip-Qt6
|
|
VERSION 1.3
|
|
GIT_REPOSITORY "https://github.com/crueter/quazip-qt6.git"
|
|
GIT_TAG v1.5-qt6
|
|
)
|