Skip to content

Commit

Permalink
Update the windows rids
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Sep 3, 2024
1 parent 06d9048 commit 60ebc25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build/BuildWindowsTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ public override void Run(BuildContext context)
{
var buildWorkingDir = "openal-soft/build_windows";
context.CreateDirectory(buildWorkingDir);
context.CreateDirectory($"{context.ArtifactsDir}/windows-x64/");
context.CreateDirectory($"{context.ArtifactsDir}/win-x64/");
context.StartProcess("cmake", new ProcessSettings { WorkingDirectory = buildWorkingDir, Arguments = "-DALSOFT_TESTS=OFF -DALSOFT_UTILS=OFF -DALSOFT_EXAMPLES=OFF -DALSOFT_INSTALL=OFF .." });
//context.ReplaceTextInFiles("assimp/code/assimp.vcxproj", "MultiThreadedDLL", "MultiThreaded");
//context.ReplaceTextInFiles("assimp/contrib/zlib/zlibstatic.vcxproj", "MultiThreadedDLL", "MultiThreaded");
context.StartProcess("cmake", new ProcessSettings { WorkingDirectory = buildWorkingDir, Arguments = "--build . --config release" });
context.CopyFile(@"openal-soft/build_windows/Release/OpenAL32.dll", $"{context.ArtifactsDir}/windows-x64/openal.dll");
context.CopyFile(@"openal-soft/build_windows/Release/OpenAL32.dll", $"{context.ArtifactsDir}/win-x64/openal.dll");
}
}
2 changes: 1 addition & 1 deletion buildscripts

0 comments on commit 60ebc25

Please sign in to comment.