Skip to content

Commit

Permalink
cmake: fixed invalid path to vcpkg toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
SNMetamorph committed Jun 13, 2024
1 parent 87d612b commit 17d784a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/VcpkgIntegration.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function(get_vcpkg_instance_path RESULT_VAR)
set(${RESULT_VAR} "$ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" PARENT_SCOPE)
message(STATUS "External vcpkg installation found at path: $ENV{VCPKG_ROOT}")
else()
set(${RESULT_VAR} "${CMAKE_SOURCE_DIR}/external/vcpkg/scripts/buildsystems/vcpkg.cmake" PARENT_SCOPE)
set(${RESULT_VAR} "${CMAKE_SOURCE_DIR}/deps/vcpkg/scripts/buildsystems/vcpkg.cmake" PARENT_SCOPE)
message(STATUS "External vcpkg installation not found, submodule will be used")
endif()
endfunction()
Expand Down

0 comments on commit 17d784a

Please sign in to comment.