client-root/build_client.sh

16 lines
446 B
Bash
Raw Normal View History

2019-07-03 07:27:12 -04:00
#!/usr/bin/env bash
cd $(dirname $0)
2020-02-02 15:55:10 -05:00
export tearoot_cmake_config="`pwd`/build-helpers/cmake/config/tearoot-client.cmake"
export tearoot_cmake_module="`pwd`/build-helpers/cmake/"
2019-07-05 15:02:09 -04:00
export traroot_library="`pwd`/third_party"
2019-07-03 07:27:12 -04:00
2020-02-08 10:50:12 -05:00
source build-helpers/build_helper.sh
2019-07-03 07:27:12 -04:00
begin_task "build_client" "Building client"
./client/jenkins/create_build.sh
2019-07-03 07:32:55 -04:00
check_err_exit "__build_client" "Failed to build client!"
2019-07-03 07:27:12 -04:00
2020-02-02 15:55:10 -05:00
end_task "build_client" "Client build finished"