Skip to content

Commit

Permalink
should be final paths
Browse files Browse the repository at this point in the history
  • Loading branch information
PlasmaDev5 committed Dec 27, 2024
1 parent 823acdc commit e54ea8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin-dev/Source/Sentry/Sentry.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public bool Load(ReadOnlyTargetRules target, ModuleRules rules)
private bool Build(ReadOnlyTargetRules target, ModuleRules rules, string buildType)
{
string builtFile = Path.Combine(m_generatedTargetPath, buildType+".built");
string projectCMakeLists=Path.GetFullPath(Path.Combine(m_cmakeTargetPath, "CMakeLists.txt"));
string projectCMakeLists=Path.GetFullPath(Path.Combine(m_targetPath, "CMakeLists.txt"));

bool configCMake=true;

Expand Down Expand Up @@ -335,7 +335,7 @@ private string CreateCMakeConfigCommand(ReadOnlyTargetRules target, ModuleRules
var installPath = m_thirdPartyGeneratedPath;

var arguments = " -G \""+GetGeneratorName(target)+"\""+
" -S \""+m_cmakeTargetPath+"\""+
" -S \""+m_targetLocation+"\""+
" -B \""+buildDirectory+"\""+
buildToolchain+
" -DCMAKE_BUILD_TYPE="+GetBuildType(target)+
Expand Down

0 comments on commit e54ea8e

Please sign in to comment.