From 35537e05f44f8f24045ac9c39fd3f4cba940ace0 Mon Sep 17 00:00:00 2001 From: Vladimir Romanov Date: Fri, 5 Jan 2018 05:57:33 +0300 Subject: [PATCH] Add pcrf_test --- CMakeLists.txt | 1 + build.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7dd4c6f..1b3b4c22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -94,3 +94,4 @@ target_include_directories(${TARGET} PUBLIC add_subdirectory(tutorial) add_subdirectory(test) add_subdirectory(src/tools) +add_subdirectory(pcrf_test) diff --git a/build.sh b/build.sh index c11445c5..51708822 100755 --- a/build.sh +++ b/build.sh @@ -9,8 +9,8 @@ if [[ -r /opt/rh/devtoolset-6/enable ]]; then source /opt/rh/devtoolset-6/enable fi #rm -f -r build || true -mkdir -p build-${CONFIG} -pushd build-${CONFIG} &> /dev/null +mkdir -p cmake-build-${CONFIG} +pushd cmake-build-${CONFIG} &> /dev/null if [[ ! -r Makefile ]]; then cmake .. -DCMAKE_BUILD_TYPE=${CONFIG} fi