File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 1+ rm compile_commands.json >& /dev/null # We will regen this later
2+ mkdir -p build_gs && cd build_gs
3+ cmake .. -DCMAKE_BUILD_TYPE=GS -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
4+ cmake --build .
5+ cd ..
6+ ln -s $( pwd) /build_gs/compile_commands.json $( pwd) /compile_commands.json
Original file line number Diff line number Diff line change 1+ rm compile_commands.json >& /dev/null # We will regen this later
2+ mkdir -p build_arm && cd build_arm
3+ cmake .. -DCMAKE_BUILD_TYPE=OBC -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
4+ cmake --build .
5+ cd ..
6+ ln -s $( pwd) /build_arm/compile_commands.json $( pwd) /compile_commands.json
Original file line number Diff line number Diff line change 1+ mkdir -p build && cd build
2+ cmake .. -DCMAKE_BUILD_TYPE=Test
3+ cmake --build .
4+ ctest --verbose
You can’t perform that action at this time.
0 commit comments