mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
23 lines
495 B
CMake
23 lines
495 B
CMake
cmake_minimum_required(VERSION 3.10...3.27)
|
|
|
|
add_subdirectory(base64)
|
|
add_subdirectory(lz4)
|
|
add_subdirectory(mongoose)
|
|
add_subdirectory(spdlog)
|
|
add_subdirectory(tinyxml2)
|
|
|
|
|
|
if(USE_EXTERNAL_DETOURS)
|
|
find_path(DETOURS_INCLUDE_DIRS "detours/detours.h")
|
|
find_library(DETOURS_LIBRARY detours REQUIRED)
|
|
else()
|
|
add_subdirectory(Detours)
|
|
endif()
|
|
|
|
|
|
if(USE_EXTERNAL_JSON)
|
|
find_package(nlohmann_json 3.2.0 REQUIRED)
|
|
else()
|
|
set(JSON_BuildTests OFF CACHE INTERNAL "")
|
|
add_subdirectory(json)
|
|
endif() |