10 lines
252 B
CMake
10 lines
252 B
CMake
|
|
# Specify the path to dependencies' git repositories
|
||
|
|
|
||
|
|
cmake_path(SET cxxopts_path "git@sofdev:External/cxxopts.git")
|
||
|
|
|
||
|
|
if (
|
||
|
|
NOT DEFINED cxxopts_path)
|
||
|
|
|
||
|
|
message(FATAL_ERROR "Path to the dependency git repository is not specified")
|
||
|
|
endif()
|