chore: disable building of bridgepp-test app in build script.

Also enabled verbose cmake output for easier debugging.
This commit is contained in:
Xavier Michelon
2023-05-23 16:06:08 +02:00
parent 4b52d998db
commit 7d54e6907d
2 changed files with 3 additions and 3 deletions

View File

@ -106,10 +106,10 @@ cmake \
-B "${BUILD_DIR}" -B "${BUILD_DIR}"
check_exit "CMake failed" check_exit "CMake failed"
cmake --build "${BUILD_DIR}" cmake --build "${BUILD_DIR}" -v
check_exit "build failed" check_exit "build failed"
if [ "$1" == "install" ]; then if [ "$1" == "install" ]; then
cmake --install "${BUILD_DIR}" cmake --install "${BUILD_DIR}" -v
check_exit "install failed" check_exit "install failed"
fi fi

View File

@ -185,7 +185,7 @@ enable_testing()
#***************************************************************************************************************************************************** #*****************************************************************************************************************************************************
# Tests # Tests
#***************************************************************************************************************************************************** #*****************************************************************************************************************************************************
add_executable(bridgepp-test add_executable(bridgepp-test EXCLUDE_FROM_ALL
Test/TestBridgeUtils.cpp Test/TestBridgeUtils.cpp
Test/TestException.cpp Test/TestException.cpp
Test/TestWorker.cpp Test/TestWorker.h) Test/TestWorker.cpp Test/TestWorker.h)