summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJules Blok <jules.blok@gmail.com>2024-03-13 16:36:42 +0100
committerJules Blok <jules.blok@gmail.com>2024-03-13 16:37:18 +0100
commit07448dcc819987ffd50ba29de4d39a7c75d67e39 (patch)
treef2741ad3d6e0f45eba74dc070338e7baeb84214b /Source
parent7117d115e72540351f26b47edd9c435cab44cf48 (diff)
VSProps: Set VcpkgEnabled to false
We don't rely on vcpkg for dependencies
Diffstat (limited to 'Source')
-rw-r--r--Source/VSProps/Base.props2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/VSProps/Base.props b/Source/VSProps/Base.props
index 329c832f51..2717cd6a1e 100644
--- a/Source/VSProps/Base.props
+++ b/Source/VSProps/Base.props
@@ -10,6 +10,8 @@
<OutDir>$(IntDir)bin\</OutDir>
<!--Set link /INCREMENTAL:NO to remove some entropy from builds (assists with deterministic build)-->
<LinkIncremental>false</LinkIncremental>
+ <!--Disable vcpkg to avoid accidentally linking to its packages-->
+ <VcpkgEnabled>false</VcpkgEnabled>
</PropertyGroup>
<ItemDefinitionGroup>
<!--ClCompile Base-->