1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-08-26 06:23:00 +03:00

Warn user if vcpkg is not integrated with VS

This commit is contained in:
Yihong Wu 2022-04-29 18:03:39 +08:00
parent ca226cdc9d
commit 0735af9fdf

View File

@ -36,6 +36,10 @@ if(EXISTS "${TOP_DIRECTORY}/.git" AND NOT EXISTS "${TOP_DIRECTORY}/src/libhamcor
message (FATAL_ERROR "Submodules are not initialized. Run\n\tgit submodule update --init --recursive")
endif()
if(WIN32 AND VCPKG_TARGET_TRIPLET AND NOT DEFINED CMAKE_TOOLCHAIN_FILE)
message (FATAL_ERROR "vcpkg not installed or integrated with Visual Studio. Install it and run\n\tvcpkg integrate install")
endif()
if(UNIX)
include(GNUInstallDirs)