Skip to content

Commit 3bb719b

Browse files
committed
s
1 parent d67ec6b commit 3bb719b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ if(DEFINED ENV{GITHUB_ACTIONS})
7979
if(NOT BOOTSTRAP_RESULT EQUAL 0)
8080
message(FATAL_ERROR "Failed to bootstrap vcpkg")
8181
endif()
82+
execute_process(COMMAND "${VCPKG_DIR}/bootstrap-vcpkg.bat" WORKING_DIRECTORY "${VCPKG_DIR}" RESULT_VARIABLE INTEGRATE_INSTALL_RESULT)
83+
if(NOT INTEGRATE_INSTALL_RESULT EQUAL 0)
84+
message(FATAL_ERROR "Failed to integrate vcpkg")
85+
endif()
8286
set(ENV{VCPKG_BUILD_TYPE} "release")
8387
execute_process(COMMAND "${VCPKG_DIR}/vcpkg.exe" install re2 WORKING_DIRECTORY "${VCPKG_DIR}" RESULT_VARIABLE VCPKG_INSTALL_RE2_RESULT)
8488
if(NOT VCPKG_INSTALL_RE2_RESULT EQUAL 0)

0 commit comments

Comments
 (0)