tdlight-java-natives/scripts/continuous-integration/github-workflows/build-natives.sh

13 lines
201 B
Bash
Raw Normal View History

2020-12-26 15:06:44 +01:00
#!/bin/bash -e
set -e
2020-12-28 20:05:56 +01:00
cd ./scripts/core/
2020-12-27 14:18:13 +01:00
./generate_maven_project.sh
./generate_td_tools.sh
./configure_td.sh
2020-12-27 14:18:13 +01:00
./compile_td.sh
./compile_tdjni.sh
./build_generated_maven_project.sh
2020-12-26 15:06:44 +01:00
echo "Done."
exit 0