Adding custom build target to build osmo-gsm-tester trial

This commit is contained in:
Paul Sutton 2020-04-14 17:20:38 +01:00 committed by Andre Puschmann
parent 11a8db202a
commit b1a127a546
2 changed files with 21 additions and 1 deletions

View File

@ -500,6 +500,12 @@ configure_file(
add_custom_target(uninstall
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
########################################################################
# Create optional target to build osmo-gsm-tester trial
########################################################################
add_custom_target(trial
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/build_trial.sh)
########################################################################
# Add -fPIC property to all targets
########################################################################
@ -560,4 +566,4 @@ else(ENABLE_SRSEPC)
message(STATUS "srsEPC build disabled")
endif(ENABLE_SRSEPC)
add_subdirectory(test)
add_subdirectory(test)

14
build_trial.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
rm -rf sysroot && mkdir sysroot
cmake -DCMAKE_INSTALL_PREFIX="sysroot/" ../
make install
this="$(date +%Y-%m-%d_%H_%M_%S)"
trialdir="srslte_trial_${this}"
tar="srslte.build-${this}.tgz"
mkdir ${trialdir}
tar czf "${trialdir}/$tar" -C "sysroot" .
md5sum "${trialdir}/$tar" >>${trialdir}/checksums.md5
echo "Built ${trialdir}"