We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ba0a06 commit 298c899Copy full SHA for 298c899
1 file changed
.github/workflows/windows-cmake.yml
@@ -18,14 +18,14 @@ jobs:
18
with:
19
python-version: '3.x'
20
21
- - name: Install MinGW
22
- run: choco install mingw -y
23
-
24
- name: Install PyInstaller
25
run: pip install pyinstaller
26
27
- - name: Compile C++ programs over CMake
28
- - run: make cmake
+ - name: Configure CMake
+ run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
+
+ - name: Build with CMake
+ run: cmake --build build --config Release
29
30
- name: Compile IMGConverter
31
run: pyinstaller --onefile --distpath . tools/IMGConverter/IMGConverter.py
@@ -81,4 +81,4 @@ jobs:
81
Y2K38Patcher.exe
82
copyDatas.exe
83
LOADER7VC.exe
84
- # DEV7Monitor.exe
+ # DEV7Monitor.exe
0 commit comments