File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 8080 run : |
8181 .\vcpkg\vcpkg install fltk
8282
83- - name : Configure CMake
83+ - name : Configure CMake (Linux)
84+ if : runner.os == 'Linux'
85+ # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
86+ # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
87+ run : >
88+ cmake -B ${{ steps.strings.outputs.build-output-dir }}
89+ -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
90+ -DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
91+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
92+ -S ${{ github.workspace }}
93+
94+ - name : Configure CMake (Windows)
95+ if : runner.os == 'Windows'
8496 # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
8597 # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
8698 run : >
You can’t perform that action at this time.
0 commit comments