mirror of
https://github.com/latentPrion/cppbessot.git
synced 2026-08-12 23:48:22 +00:00
8 lines
327 B
CMake
8 lines
327 B
CMake
if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/googletest/CMakeLists.txt")
|
|||
|
|
message(FATAL_ERROR
|
||
|
|
"GoogleTest submodule is missing. Run `git submodule update --init --recursive tests/googletest` from the cppbessot repo root.")
|
||
|
|
endif()
|
||
|
|
|
||
|
|
add_subdirectory(googletest EXCLUDE_FROM_ALL)
|
||
|
|
add_subdirectory(cpp-serdes EXCLUDE_FROM_ALL)
|