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

master
Paul Sutton 5 years ago committed by Andre Puschmann
parent 11a8db202a
commit b1a127a546

@ -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
########################################################################

@ -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}"
Loading…
Cancel
Save