2024-10-14 12:01:03 -07:00

17 lines
378 B
Bash
Executable File

#!/bin/sh
cd `dirname $0`
# Generate framework cpp files
../../fprime/generate_cpp
# Generate header files
echo "running the tests to generate the header files"
./run
(cd ../../state-machine/harness; ./generate-cpp)
echo "running the tests in ../../state-machine to generate the header files"
(cd ../../state-machine; ./run-all)
# Compile cpp files
../compile_base_cpp "$@"