From 823acdceddbd42a218cd4aa58c66091e4fe1e436 Mon Sep 17 00:00:00 2001 From: PlasmaDev5 Date: Tue, 24 Dec 2024 04:35:17 +0000 Subject: [PATCH] correct path to cmake --- plugin-dev/Source/Sentry/Sentry.Build.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-dev/Source/Sentry/Sentry.Build.cs b/plugin-dev/Source/Sentry/Sentry.Build.cs index 837b1b7c..b15b922a 100644 --- a/plugin-dev/Source/Sentry/Sentry.Build.cs +++ b/plugin-dev/Source/Sentry/Sentry.Build.cs @@ -335,7 +335,7 @@ private string CreateCMakeConfigCommand(ReadOnlyTargetRules target, ModuleRules var installPath = m_thirdPartyGeneratedPath; var arguments = " -G \""+GetGeneratorName(target)+"\""+ - " -S \""+m_targetLocation+"\""+ + " -S \""+m_cmakeTargetPath+"\""+ " -B \""+buildDirectory+"\""+ buildToolchain+ " -DCMAKE_BUILD_TYPE="+GetBuildType(target)+