15 lines
390 B
Bash
Executable File
15 lines
390 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd $(dirname $0)
|
|
|
|
tearoot_cmake_config="`pwd`/cmake/config/tearoot-client.cmake"
|
|
tearoot_cmake_module="`pwd`/cmake/"
|
|
traroot_library="`pwd`/third_party"
|
|
|
|
source scripts/build_helper.sh
|
|
begin_task "build_client" "Building client"
|
|
|
|
./client/jenkins/create_build.sh
|
|
check_err_exit "__build_client" "Failed to build client!"
|
|
|
|
end_task "build_client" "Client build finished" |