diff options
author | David Snopek <dsnopek@gmail.com> | 2024-09-26 06:03:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 06:03:56 -0700 |
commit | 96565e1de5042baeb4835e56021fc995f1647fd1 (patch) | |
tree | c8cd16384b9a34187beb7b66fc41ea2709a07804 | |
parent | 78f5d99fd938bbb432071000fc3355cc50a721f3 (diff) | |
parent | 07704f8f48308b83fc99c67b33a10027aa5a7846 (diff) | |
download | redot-cpp-96565e1de5042baeb4835e56021fc995f1647fd1.tar.gz |
Merge pull request #1600 from enetheru/vsproj-ci-config
VSProj Configure type on build command - to resolve #1582
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76abdd5..13b7243 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -264,9 +264,9 @@ jobs: - name: Build godot-cpp run: | cmake -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 16 2019" . - cmake --build . --verbose + cmake --build . --verbose --config Release - name: Build test GDExtension library run: | cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -G"Visual Studio 16 2019" . - cmake --build . --verbose + cmake --build . --verbose --config Release |