mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 00:38:08 +08:00
10 lines
238 B
CMake
10 lines
238 B
CMake
include(FetchContent)
|
|
|
|
if (toml11_BUILD_TEST)
|
|
FetchContent_Declare(toml
|
|
GIT_REPOSITORY https://github.com/toml-lang/toml
|
|
GIT_TAG v0.5.0)
|
|
|
|
FetchContent_MakeAvailable(toml)
|
|
endif ()
|