From 8315572cdeacda2c8ea0ac2b0e23c2ee0dc3c069 Mon Sep 17 00:00:00 2001 From: John Spray Date: Tue, 8 May 2018 14:22:35 +0100 Subject: [PATCH] cmake: do not install `hello` demo module Signed-off-by: John Spray --- src/pybind/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pybind/CMakeLists.txt b/src/pybind/CMakeLists.txt index c996cd9402ad5..f2394aa0b11ca 100644 --- a/src/pybind/CMakeLists.txt +++ b/src/pybind/CMakeLists.txt @@ -72,6 +72,7 @@ if(WITH_MGR) install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/mgr DESTINATION ${CMAKE_INSTALL_PKGLIBDIR} - REGEX ".*/\\.gitignore" EXCLUDE) + REGEX ".*/\\.gitignore" EXCLUDE + REGEX ".*/hello/.*" EXCLUDE) add_subdirectory(mgr) endif(WITH_MGR) -- 2.47.3