summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2023-05-26 20:11:44 +0200
committerGitHub <noreply@github.com>2023-05-26 20:11:44 +0200
commit1b66a1149eaaa195e3a35ab836fbe1313b289498 (patch)
tree0f5c624f7c48cedd539741d4c9adf8963f11a768
parent26ceab814f333a69d24cb07ba3231b80e437b453 (diff)
Use NMake for Windows builds (#481)
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 99c75e96..c56c3b39 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -80,7 +80,7 @@ jobs:
- name: Run CMake
run: |
mkdir clblast_release_dir
- cmake -S . -B build -DTESTS=OFF -DCLIENTS=OFF -DSAMPLES=ON -DCMAKE_INSTALL_PREFIX=clblast_release_dir -DOPENCL_ROOT=C:/vcpkg/packages/opencl_x64-windows
+ cmake -S . -B build -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DTESTS=OFF -DCLIENTS=OFF -DSAMPLES=ON -DCMAKE_INSTALL_PREFIX=clblast_release_dir -DOPENCL_ROOT=C:/vcpkg/packages/opencl_x64-windows
- name: Compile the code
run: cmake --build build --config Release