- GitHub actions changed to build simulator on macOS (it's broken, but at least we get a good code portability check for now!) - `Buildscripts/` shell scripts updated to use `/bin/sh` so it works on macOS too - Various includes fixed in various subprojects so the code is more portable
7 lines
144 B
Bash
Executable File
7 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cmake -S ./ -B build-sim
|
|
cmake --build build-sim --target build-tests -j 14
|
|
build-sim/Tests/TactilityCore/TactilityCoreTests --exit
|
|
|