client-root/build_client.sh

15 lines
411 B
Bash
Raw Normal View History

2019-07-03 07:27:12 -04:00
#!/usr/bin/env bash
cd $(dirname $0)
2019-07-05 15:02:09 -04: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 07:27:12 -04:00
source scripts/build_helper.sh
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
end_task "build_client" "Client build finished"