client-root/build_client.sh

16 lines
446 B
Bash
Raw Normal View History

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