From 54c9ac0b90063bb7cfd9b9563eafce5e7d0c7647 Mon Sep 17 00:00:00 2001 From: Dean Ellis Date: Thu, 22 Feb 2024 23:47:04 +0000 Subject: [PATCH] Fix Windows --- build/BuildWindowsTask.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/BuildWindowsTask.cs b/build/BuildWindowsTask.cs index def575c..1845ca9 100644 --- a/build/BuildWindowsTask.cs +++ b/build/BuildWindowsTask.cs @@ -21,7 +21,6 @@ public override void Run(BuildContext context) // Disable openmp so there is no dependency on VCOMP140.dll context.StartProcess("cmake", new ProcessSettings { WorkingDirectory = buildWorkingDir, Arguments = "-DASSIMP_BUILD_TESTS=OFF -DASSIMP_INSTALL=OFF CMakeLists.txt"}); context.MSBuild("assimp/ALL_BUILD.vcxproj", buildSettings); - context.StartProcess("dir", new ProcessSettings { WorkingDirectory = buildWorkingDir, Arguments = ""}); - context.CopyFile("assimp/bin/assimp.dll", $"{context.ArtifactsDir}/assimp.dll"); + context.CopyFile(@"assimp/bin/Release/assimp-vc143-mt.dll", $"{context.ArtifactsDir}/assimp.dll"); } }