From 31e0ea58562af8909ee4f3ef618f29a0ce84dff0 Mon Sep 17 00:00:00 2001 From: methylDragon Date: Thu, 28 Apr 2022 14:55:55 -0700 Subject: [PATCH] Install redirection headers for CLI Signed-off-by: methylDragon --- cli/include/CMakeLists.txt | 3 +++ cli/include/external-cli/CMakeLists.txt | 2 ++ cli/include/vendored-cli/CMakeLists.txt | 2 ++ 3 files changed, 7 insertions(+) create mode 100644 cli/include/external-cli/CMakeLists.txt create mode 100644 cli/include/vendored-cli/CMakeLists.txt diff --git a/cli/include/CMakeLists.txt b/cli/include/CMakeLists.txt index 74551ac..e1e2e3a 100644 --- a/cli/include/CMakeLists.txt +++ b/cli/include/CMakeLists.txt @@ -17,3 +17,6 @@ endif() add_subdirectory(gz/utils) install(DIRECTORY ignition DESTINATION ${IGN_INCLUDE_INSTALL_DIR_FULL}) + +add_subdirectory(vendored-cli) +add_subdirectory(external-cli) diff --git a/cli/include/external-cli/CMakeLists.txt b/cli/include/external-cli/CMakeLists.txt new file mode 100644 index 0000000..b984e3d --- /dev/null +++ b/cli/include/external-cli/CMakeLists.txt @@ -0,0 +1,2 @@ +add_subdirectory(gz/utils) +install(DIRECTORY ignition DESTINATION ${IGN_INCLUDE_INSTALL_DIR_FULL}) diff --git a/cli/include/vendored-cli/CMakeLists.txt b/cli/include/vendored-cli/CMakeLists.txt new file mode 100644 index 0000000..b984e3d --- /dev/null +++ b/cli/include/vendored-cli/CMakeLists.txt @@ -0,0 +1,2 @@ +add_subdirectory(gz/utils) +install(DIRECTORY ignition DESTINATION ${IGN_INCLUDE_INSTALL_DIR_FULL})