From 0e185b0a2efb7525c85a8a04c3a0a88b1867c5ca Mon Sep 17 00:00:00 2001 From: Tristan Ayala Date: Tue, 9 Jul 2024 15:29:19 -0700 Subject: [PATCH 1/2] Fix completely intended ROOT_DIRECTORY bug --- CoolVcpkg.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoolVcpkg.cmake b/CoolVcpkg.cmake index 9829ae1..da7ebd0 100644 --- a/CoolVcpkg.cmake +++ b/CoolVcpkg.cmake @@ -648,7 +648,7 @@ macro(_cool_vcpkg_set_up_vcpkg) ) set(options COLLECT_METRICS) - set(oneValueArgs DEFAULT_TRIPLET CHAIN_LOAD_TOOLCHAIN) + set(oneValueArgs ROOT_DIRECTORY DEFAULT_TRIPLET CHAIN_LOAD_TOOLCHAIN) set(multiValueArgs OVERLAY_PORT_LOCATIONS) cmake_parse_arguments(bootstrap_vcpkg "${options}" "${oneValueArgs}" "${multiValueArgs}" "${args}") From 92f1fcc74770a9d6f7dba017826cef48d88642a9 Mon Sep 17 00:00:00 2001 From: Tristan Ayala Date: Tue, 9 Jul 2024 15:31:12 -0700 Subject: [PATCH 2/2] Bump the _cool_vcpkg_version --- CoolVcpkg.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoolVcpkg.cmake b/CoolVcpkg.cmake index da7ebd0..f890fd5 100644 --- a/CoolVcpkg.cmake +++ b/CoolVcpkg.cmake @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.28) include_guard(GLOBAL) # When including this module, check that we are up-to-date (as long as the user has not opted out of it) -set(_cool_vcpkg_version 0.1.0 CACHE INTERNAL "Version of the cool-vcpkg CMake module" FORCE) +set(_cool_vcpkg_version 0.1.1 CACHE INTERNAL "Version of the cool-vcpkg CMake module" FORCE) option(COOL_VCPKG_ENABLED "Enable the cool-vcpkg CMake module" ON) option(COOL_VCPKG_CHECK_FOR_UPDATES "Enable checking for latest updates from the github repository" ON)