aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-cmake.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml
index 9df0211..8f47d10 100644
--- a/.github/workflows/build-cmake.yml
+++ b/.github/workflows/build-cmake.yml
@@ -27,13 +27,13 @@ jobs:
run: cmake --build .
- name: Build example - basic (cmake)
- run: cmake . && make
+ run: cmake . && cmake --build .
working-directory: examples/basic/
- name: Build example - calculator (cmake)
- run: cmake . && make
+ run: cmake . && cmake --build .
working-directory: examples/calculator/
- name: Build example - sending_arguments (cmake)
- run: cmake . && make
+ run: cmake . && cmake --build .
working-directory: examples/sending_arguments/