diff --git a/internal/frontend/bridge-gui/bridge-gui/build.sh b/internal/frontend/bridge-gui/bridge-gui/build.sh index ed970d37..f1c80b36 100755 --- a/internal/frontend/bridge-gui/bridge-gui/build.sh +++ b/internal/frontend/bridge-gui/bridge-gui/build.sh @@ -106,10 +106,10 @@ cmake \ -B "${BUILD_DIR}" check_exit "CMake failed" -cmake --build "${BUILD_DIR}" +cmake --build "${BUILD_DIR}" -v check_exit "build failed" if [ "$1" == "install" ]; then - cmake --install "${BUILD_DIR}" + cmake --install "${BUILD_DIR}" -v check_exit "install failed" fi diff --git a/internal/frontend/bridge-gui/bridgepp/CMakeLists.txt b/internal/frontend/bridge-gui/bridgepp/CMakeLists.txt index fafd1c25..c1c4a04f 100644 --- a/internal/frontend/bridge-gui/bridgepp/CMakeLists.txt +++ b/internal/frontend/bridge-gui/bridgepp/CMakeLists.txt @@ -185,7 +185,7 @@ enable_testing() #***************************************************************************************************************************************************** # Tests #***************************************************************************************************************************************************** -add_executable(bridgepp-test +add_executable(bridgepp-test EXCLUDE_FROM_ALL Test/TestBridgeUtils.cpp Test/TestException.cpp Test/TestWorker.cpp Test/TestWorker.h)