From 6278e0b81359b75e42b2ff78e2f511406360bd08 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Fri, 5 Jul 2019 21:02:09 +0200 Subject: [PATCH] Fixed client build variables --- jenkins/create_build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jenkins/create_build.sh b/jenkins/create_build.sh index 6aa2729..8e2cae4 100755 --- a/jenkins/create_build.sh +++ b/jenkins/create_build.sh @@ -45,6 +45,8 @@ function compile_native() { [[ ! -z "$tearoot_cmake_module" ]] && _arguments="${_arguments} -DCMAKE_MODULE_PATH=\"$tearoot_cmake_module\"" [[ ! -z "$tearoot_cmake_config" ]] && _arguments="${_arguments} -DCMAKE_PLATFORM_INCLUDE=\"$tearoot_cmake_config\"" [[ ! -z "$traroot_library" ]] && _arguments="${_arguments} -DLIBRARY_PATH=\"$traroot_library\"" + echo "Native arguments: ${_arguments}" + cmake ../../ -DCMAKE_BUILD_TYPE=RelWithDebInfo ${_arguments} check_err_exit ${project_name} "Failed create build targets!"