Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix msbuild error
  • Loading branch information
lambdageek committed Sep 9, 2022
commit bb88c3518d83142dc5c1051dc41066fba475976b
8 changes: 6 additions & 2 deletions eng/emsdk.proj
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,15 @@
<!--<Delete Files="$(ArtifactsObjDir)upstream\bin\wasm-ld.exe" />--> <!-- TODO: this is used by emcc but could be a symlink to ld.exe -->

<PropertyGroup>
<CacheSdkFilesDir>$(ArtifactObjDir)\.cache-sdk\</CacheSdkFilesDir>
<CacheSdkFilesDir>$(ArtifactsObjDir)\.cache-sdk\</CacheSdkFilesDir>
</PropertyGroup>

<ItemGroup>
<CacheSdkFilesToMove Include="$(ArtifactsObjDir)upstream\emscripten\cache\**\*" />
</ItemGroup>

<!-- move the emscripten cache to a separate directory -->
<Move SourceFiles="$(ArtifactObjDir)upstream\emscripten\cache\**\*"
<Move SourceFiles="@(CacheSdkFilesToMove)"
DestinationFiles="$(CacheSdkFilesDir)emscripten\cache\%(RecursiveDir)%(Filename)%(Extension)" />

<ItemGroup>
Expand Down