File tree Expand file tree Collapse file tree 1 file changed +0
-31
lines changed Expand file tree Collapse file tree 1 file changed +0
-31
lines changed Original file line number Diff line number Diff line change 54
54
cd build
55
55
cmake .. -DCMAKE_BUILD_TYPE=Release
56
56
cmake --build . --config Release
57
-
58
- MinGW :
59
- runs-on : ubuntu-latest
60
- strategy :
61
- matrix :
62
- include :
63
- - host : i686-w64-mingw32
64
- api : winmm
65
- - host : x86_64-w64-mingw32
66
- api : winmm
67
- steps :
68
- - uses : actions/checkout@v4
69
- with :
70
- fetch-depth : 0
71
- - name : Install dependencies (MinGW)
72
- run : |
73
- sudo apt-get update
74
- sudo apt-get install -y mingw-w64 cmake autoconf-archive build-essential
75
- - name : Create build directory
76
- run : |
77
- mkdir -p build
78
- - name : Build with CMake (MinGW)
79
- run : |
80
- cd build
81
- cmake .. \
82
- -DCMAKE_BUILD_TYPE=Release \
83
- -DCMAKE_TOOLCHAIN_FILE=../mingw-toolchain.cmake \
84
- -DRTMIDI_API_${{ matrix.api }}=ON \
85
- -G "MinGW Makefiles" # Use MinGW-specific makefiles
86
- cmake --build . --config Release
87
-
You can’t perform that action at this time.
0 commit comments