-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use submodules for some dependencies.
- Loading branch information
Showing
16 changed files
with
76 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[submodule "deps/nlohmann-json"] | ||
path = deps/nlohmann-json | ||
url = https://github.com/nlohmann/json.git | ||
[submodule "deps/range-v3"] | ||
path = deps/range-v3 | ||
url = https://github.com/ericniebler/range-v3.git | ||
[submodule "deps/fmtlib"] | ||
path = deps/fmtlib | ||
url = https://github.com/fmtlib/fmt.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,5 @@ | ||
include(FetchContent) | ||
|
||
FetchContent_Declare( | ||
fmtlib | ||
PREFIX "${PROJECT_BINARY_DIR}/deps" | ||
DOWNLOAD_DIR "${PROJECT_SOURCE_DIR}/deps/downloads" | ||
DOWNLOAD_NAME fmt-9.1.0.tar.gz | ||
URL https://github.com/fmtlib/fmt/archive/9.1.0.tar.gz | ||
URL_HASH SHA256=5dea48d1fcddc3ec571ce2058e13910a0d4a6bab4cc09a809d8b1dd1c88ae6f2 | ||
set(FMT_SYSTEM_HEADERS ON) | ||
add_subdirectory( | ||
${CMAKE_SOURCE_DIR}/deps/fmtlib | ||
EXCLUDE_FROM_ALL | ||
) | ||
|
||
if (CMAKE_VERSION VERSION_LESS "3.14.0") | ||
FetchContent_GetProperties(fmtlib) | ||
if (NOT fmtlib_POPULATED) | ||
FetchContent_Populate(fmtlib) | ||
add_subdirectory(${fmtlib_SOURCE_DIR} ${fmtlib_BINARY_DIR}) | ||
endif() | ||
else() | ||
FetchContent_MakeAvailable(fmtlib) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,6 @@ | ||
include(ExternalProject) | ||
|
||
ExternalProject_Add(nlohmann-json-project | ||
DOWNLOAD_DIR "${CMAKE_SOURCE_DIR}/deps/nlohmann/nlohmann" | ||
DOWNLOAD_NAME json.hpp | ||
DOWNLOAD_NO_EXTRACT 1 | ||
URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp | ||
URL_HASH SHA256=9bea4c8066ef4a1c206b2be5a36302f8926f7fdc6087af5d20b417d0cf103ea6 | ||
CMAKE_COMMAND true | ||
BUILD_COMMAND true | ||
INSTALL_COMMAND true | ||
set(JSON_Install OFF CACHE INTERNAL "") | ||
add_subdirectory( | ||
${CMAKE_SOURCE_DIR}/deps/nlohmann-json | ||
EXCLUDE_FROM_ALL | ||
) | ||
|
||
# Create nlohmann-json imported library | ||
add_library(nlohmann-json INTERFACE IMPORTED) | ||
file(MAKE_DIRECTORY ${CMAKE_SOURCE_DIR}/deps/nlohmann) # Must exist. | ||
set_target_properties(nlohmann-json PROPERTIES | ||
INTERFACE_COMPILE_OPTIONS "\$<\$<CXX_COMPILER_ID:MSVC>:/permissive->" | ||
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES ${CMAKE_SOURCE_DIR}/deps/nlohmann | ||
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_SOURCE_DIR}/deps/nlohmann) | ||
add_dependencies(nlohmann-json nlohmann-json-project) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,7 @@ | ||
include(ExternalProject) | ||
|
||
if (${CMAKE_SYSTEM_NAME} STREQUAL "Emscripten") | ||
set(RANGE_V3_CMAKE_COMMAND emcmake cmake) | ||
else() | ||
set(RANGE_V3_CMAKE_COMMAND ${CMAKE_COMMAND}) | ||
endif() | ||
|
||
set(prefix "${PROJECT_BINARY_DIR}/deps") | ||
set(RANGE_V3_INCLUDE_DIR "${prefix}/include") | ||
|
||
ExternalProject_Add(range-v3-project | ||
PREFIX "${prefix}" | ||
DOWNLOAD_DIR "${PROJECT_SOURCE_DIR}/deps/downloads" | ||
DOWNLOAD_NAME range-v3-0.12.0.tar.gz | ||
URL https://github.com/ericniebler/range-v3/archive/0.12.0.tar.gz | ||
URL_HASH SHA256=015adb2300a98edfceaf0725beec3337f542af4915cec4d0b89fa0886f4ba9cb | ||
CMAKE_COMMAND ${RANGE_V3_CMAKE_COMMAND} | ||
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR> | ||
-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} | ||
-DBUILD_TESTING=OFF | ||
-DRANGES_CXX_STD=${CMAKE_CXX_STANDARD} | ||
-DRANGE_V3_DOCS=OFF | ||
-DRANGE_V3_EXAMPLES=OFF | ||
-DRANGE_V3_TESTS=OFF | ||
-DRANGES_BUILD_CALENDAR_EXAMPLE=OFF | ||
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} | ||
BUILD_BYPRODUCTS "${RANGE_V3_INCLUDE_DIR}/range/v3/all.hpp" | ||
) | ||
|
||
# Create range-v3 imported library | ||
add_library(range-v3 INTERFACE IMPORTED) | ||
file(MAKE_DIRECTORY ${RANGE_V3_INCLUDE_DIR}) # Must exist. | ||
set_target_properties(range-v3 PROPERTIES | ||
INTERFACE_COMPILE_OPTIONS "\$<\$<CXX_COMPILER_ID:MSVC>:/permissive->" | ||
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES ${RANGE_V3_INCLUDE_DIR} | ||
INTERFACE_INCLUDE_DIRECTORIES ${RANGE_V3_INCLUDE_DIR}) | ||
INTERFACE_COMPILE_OPTIONS "\$<\$<CXX_COMPILER_ID:MSVC>:/permissive->" | ||
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES ${CMAKE_SOURCE_DIR}/deps/range-v3/include | ||
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_SOURCE_DIR}/deps/range-v3/include | ||
) | ||
add_dependencies(range-v3 range-v3-project) |
Submodule nlohmann-json
added at
9cca28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters