File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,27 +29,12 @@ jobs:
2929 shell : bash
3030 run : echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
3131
32- - name : Configure Bootstrap CMake
33- run : >
34- cmake -B "${{ steps.strings.outputs.build-output-dir }}_flex"
35- -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
36- -DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
37- -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
38- -DPXML_USE_BISON=ON
39- -S ${{ github.workspace }}
40-
41- - name : Bootstrap build with flex
42- run : >
43- cmake --build "${{ steps.strings.outputs.build-output-dir }}_flex" --config ${{ matrix.build_type }} -j ${{matrix.parallel}}
44- && cd "${{ steps.strings.outputs.build-output-dir }}_flex" && sudo make install
45-
4632 - name : Configure CMake
4733 run : >
4834 cmake -B "${{ steps.strings.outputs.build-output-dir }}"
4935 -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
5036 -DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
5137 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
52- -DPXML_USE_BISON=OFF
5338 -S ${{ github.workspace }}
5439
5540 - name : Build
Original file line number Diff line number Diff line change 1+ set (PARGEN_PATH "pargen" CACHE PATH "Path of pargen program" )
12add_custom_target (update_pxml
2- pargen ${CMAKE_CURRENT_LIST_DIR} /pxml.pxml
3+ ${PARGEN_PATH} ${CMAKE_CURRENT_LIST_DIR} /pxml.pxml
34 WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} /../lib
45)
You can’t perform that action at this time.
0 commit comments