mirror of
https://github.com/nasa/fpp.git
synced 2025-12-13 08:41:15 -06:00
17 lines
378 B
Bash
Executable File
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 "$@"
|