Jelajahi Sumber

Merge branch 'blueloveTH:main' into build

Pranav Jain 2 tahun lalu
induk
melakukan
9a0e9d7a62
1 mengubah file dengan 7 tambahan dan 4 penghapusan
  1. 7 4
      build.ps1

+ 7 - 4
build.ps1

@@ -1,9 +1,12 @@
 if (Test-Path build) {
     Remove-Item -Recurse -Force build
 }
-mkdir build
-cd build
+
+New-Item -ItemType Directory -Path build
+Push-Location build
+
 cmake ..
 cmake --build . --config Release
-cp Release/main.exe ../
-cp Release/pocketpy.dll ../
+
+Copy-Item "Release\main.exe" -Destination ".." # Note: NTFS uses backslash (\) instead of slashes (*nix, /) 
+Copy-Item "Release\pocketpy.dll" -Destination ".."