diff --git a/script/test.sh b/script/test.sh index e372a43..7b6a526 100755 --- a/script/test.sh +++ b/script/test.sh @@ -1,2 +1,2 @@ #!/bin/bash -cmake build -B build . && cd build && make && ctest \ No newline at end of file +cmake build -B build . && cd build && cmake --build . && ctest \ No newline at end of file diff --git a/script/test_windows.ps1 b/script/test_windows.ps1 index 0f6d3c0..f5c07c7 100644 --- a/script/test_windows.ps1 +++ b/script/test_windows.ps1 @@ -1,5 +1,5 @@ cmake build -B build . Set-Location -Path "./build" -make +cmake --build . ctest Set-Location -Path ".."