diff --git a/.github/workflows/build-client.yml b/.github/workflows/build-client.yml index fda4b4ee..4fcbb21f 100644 --- a/.github/workflows/build-client.yml +++ b/.github/workflows/build-client.yml @@ -37,7 +37,7 @@ jobs: - name: Create build dir run: mkdir -p build - name: Run CMake - run: cd build && cmake .. + run: cd build && cmake -G "Unix Makefiles" .. - name: Build run: cd build && make server server-linux: @@ -48,6 +48,6 @@ jobs: - name: Create build dir run: mkdir -p build - name: Run CMake - run: cd build && cmake -G "Unix Makefiles" .. + run: cd build && cmake .. - name: Build run: cd build && make server