File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,29 @@ jobs:
1717 steps :
1818 - uses : actions/checkout@v4
1919 - name : cmake
20- run : cmake ..
20+ run : cmake -DOJPH_BUILD_STREAM_EXPAND=ON ..
2121 working-directory : build
2222 - name : build
2323 run : make
2424 working-directory : build
2525
26+ build_windows :
27+ strategy :
28+ matrix :
29+ include : [
30+ { system: Windows, runner: windows-latest },
31+ ]
32+ name : ${{ matrix.system }} Build
33+ runs-on : ${{ matrix.runner }}
34+ steps :
35+ - uses : actions/checkout@v4
36+ - name : cmake
37+ run : cmake -G "Visual Studio 17 2022" -A x64 -DOJPH_ENABLE_TIFF_SUPPORT=OFF -DOJPH_BUILD_STREAM_EXPAND=ON ..
38+ working-directory : build
39+ - name : build
40+ run : cmake --build . --config Release
41+ working-directory : build
42+
2643 test :
2744 strategy :
2845 matrix :
You can’t perform that action at this time.
0 commit comments