9 lines
217 B
CMake
9 lines
217 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
magic_enum
|
|
GIT_REPOSITORY https://github.com/Neargye/magic_enum.git
|
|
GIT_TAG v0.7.0
|
|
GIT_SHALLOW TRUE
|
|
)
|
|
FetchContent_MakeAvailable(magic_enum) |