We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e839bd7 commit cf7e588Copy full SHA for cf7e588
.github/workflows/cmake_windows.yml
@@ -15,6 +15,10 @@ jobs:
15
uses: jurplel/install-qt-action@v4
16
with:
17
version: '6.6.*'
18
+ - name Install zlib
19
+ - run: |
20
+ pkg-config --cflags zlib
21
+ pkg-config --libs zlib
22
- name: Configure
23
run: cmake -B windows -DCMAKE_BUILD_TYPE=Release
24
- name: Build
game/CMakeLists.txt
@@ -14,7 +14,7 @@ FetchContent_Declare(
14
FetchContent_MakeAvailable(nlohmann_json)
-find_package(ZLIB)
+find_package(ZLIB REQUIRED)
set(
SOURCE_FILES
0 commit comments