From bbf695eafdb614a42be653a2b9a398bd2f154138 Mon Sep 17 00:00:00 2001 From: mzed <github@mikezed.com> Date: Thu, 23 Nov 2017 10:58:56 +0000 Subject: [PATCH] script to update, build, and test rapidmix-api --- CMakeLists.txt | 2 +- rmix_build_test.sh | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 rmix_build_test.sh diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e05388..3a82395 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,7 +88,7 @@ file(GLOB JSON_SRC "${PROJECT_SOURCE_DIR}/dependencies/third_party/jsoncpp.cpp") set(RAPIDMIX_FULL_SRC ${RAPIDMIX_SRC} ${GVF_SRC} ${MAXI_SRC} - ${PIPO_SRC} +# ${PIPO_SRC} ${RAPIDLIB_SRC} ${RAPIDLIB_DEP} ${XMM_SRC} diff --git a/rmix_build_test.sh b/rmix_build_test.sh new file mode 100755 index 0000000..8583371 --- /dev/null +++ b/rmix_build_test.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +#Make sure we've got the latest version +git pull +git submodule update --init --recursive + +rm -rf /build +mkdir build +cd build +cmake .. +make +./rapidmixTest \ No newline at end of file -- GitLab