From cfd5ba357f776ff9d531c5b91c3f859cfa8c709b Mon Sep 17 00:00:00 2001 From: Leo Yuriev Date: Sun, 14 Jan 2018 22:53:43 +0300 Subject: [PATCH] mdbx-build: move pcrf_test. Change-Id: I2d8a63c967651a7a8e72548f26b9aa54c2bb7233 --- CMakeLists.txt | 6 +++--- {pcrf_test => test/pcrf}/CMakeLists.txt | 0 {pcrf_test => test/pcrf}/README.md | 0 {pcrf_test => test/pcrf}/pcrf_test.c | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename {pcrf_test => test/pcrf}/CMakeLists.txt (100%) rename {pcrf_test => test/pcrf}/README.md (100%) rename {pcrf_test => test/pcrf}/pcrf_test.c (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 31d3a4ed..5546488c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -135,10 +135,10 @@ install(TARGETS ${TARGET}_STATIC DESTINATION ${CMAKE_INSTALL_PREFIX}/lib64 COMPO install(TARGETS ${TARGET}_SHARED DESTINATION ${CMAKE_INSTALL_PREFIX}/lib64 COMPONENT mdbx) install(FILES mdbx.h DESTINATION ${CMAKE_INSTALL_PREFIX}/include COMPONENT mdbx-devel) -add_subdirectory(tutorial) -add_subdirectory(test) add_subdirectory(src/tools) -add_subdirectory(pcrf_test) +add_subdirectory(test) +add_subdirectory(test/pcrf) +add_subdirectory(tutorial) ############################################################################## diff --git a/pcrf_test/CMakeLists.txt b/test/pcrf/CMakeLists.txt similarity index 100% rename from pcrf_test/CMakeLists.txt rename to test/pcrf/CMakeLists.txt diff --git a/pcrf_test/README.md b/test/pcrf/README.md similarity index 100% rename from pcrf_test/README.md rename to test/pcrf/README.md diff --git a/pcrf_test/pcrf_test.c b/test/pcrf/pcrf_test.c similarity index 100% rename from pcrf_test/pcrf_test.c rename to test/pcrf/pcrf_test.c