client-root/build_client.sh

15 lines
411 B
Bash
Raw Normal View History

2019-07-03 13:27:12 +02:00
#!/usr/bin/env bash
cd $(dirname $0)
2019-07-05 21:02:09 +02:00
export tearoot_cmake_config="`pwd`/cmake/config/tearoot-client.cmake"
export tearoot_cmake_module="`pwd`/cmake/"
export traroot_library="`pwd`/third_party"
2019-07-03 13:27:12 +02:00
source scripts/build_helper.sh
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
end_task "build_client" "Client build finished"