mirror of
https://github.com/progsource/maddy.git
synced 2026-03-25 16:00:39 +01:00
cmake minimum required version is now 3.25. Instead of loading gtest via git submodule, it is now loaded in the cmake files. gtest version upped to v1.13.0.
12 lines
321 B
CMake
12 lines
321 B
CMake
# This project is licensed under the MIT license. For more information see the
|
|
# LICENSE file.
|
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
googletest
|
|
GIT_REPOSITORY https://github.com/google/googletest.git
|
|
GIT_TAG b796f7d44681514f58a683a3a71ff17c94edb0c1 # v1.13.0
|
|
)
|
|
FetchContent_MakeAvailable(googletest)
|