From f7e47d03f39dcc314787065d7a699e6d7c2c3f75 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sun, 1 Oct 2023 23:08:09 -0400 Subject: [PATCH] [build] Remove unnecessary CMake config installs (#5714) --- romiVendordep/CMakeLists.txt | 2 -- wpilibNewCommands/CMakeLists.txt | 2 -- xrpVendordep/CMakeLists.txt | 2 -- 3 files changed, 6 deletions(-) diff --git a/romiVendordep/CMakeLists.txt b/romiVendordep/CMakeLists.txt index 6ec0a2b36c..c1157e937e 100644 --- a/romiVendordep/CMakeLists.txt +++ b/romiVendordep/CMakeLists.txt @@ -22,8 +22,6 @@ if (WITH_JAVA) else() set (romiVendordep_config_dir share/romiVendordep) endif() - - install(FILES romiVendordep-config.cmake DESTINATION ${romiVendordep_config_dir}) endif() file(GLOB_RECURSE romiVendordep_native_src src/main/native/cpp/*.cpp) diff --git a/wpilibNewCommands/CMakeLists.txt b/wpilibNewCommands/CMakeLists.txt index d3aa541aa3..5803468c71 100644 --- a/wpilibNewCommands/CMakeLists.txt +++ b/wpilibNewCommands/CMakeLists.txt @@ -22,8 +22,6 @@ if (WITH_JAVA) else() set (wpilibNewCommands_config_dir share/wpilibNewCommands) endif() - - install(FILES ${WPILIB_BINARY_DIR}/wpilibNewCommands-config.cmake DESTINATION ${wpilibNewCommands_config_dir}) endif() file(GLOB_RECURSE wpilibNewCommands_native_src src/main/native/cpp/*.cpp) diff --git a/xrpVendordep/CMakeLists.txt b/xrpVendordep/CMakeLists.txt index 9ba681b29b..2b7556d156 100644 --- a/xrpVendordep/CMakeLists.txt +++ b/xrpVendordep/CMakeLists.txt @@ -22,8 +22,6 @@ if (WITH_JAVA) else() set (xrpVendordep_config_dir share/xrpVendordep) endif() - - install(FILES xrpVendordep-config.cmake DESTINATION ${xrpVendordep_config_dir}) endif() file(GLOB_RECURSE xrpVendordep_native_src src/main/native/cpp/*.cpp)