From 054358024517a7b886692a5f0e9371b96747d254 Mon Sep 17 00:00:00 2001 From: Jared Frazier Date: Tue, 11 Mar 2025 16:05:42 +0100 Subject: [PATCH] Removed unnecessary include call in install/ `include("${PROJECT_SOURCE_DIR}/cmake/helper.cmake")` is called in project root CMakeLists.txt, so it is not necessary to have it in `install/` as well. --- install/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install/CMakeLists.txt b/install/CMakeLists.txt index 9298887..e1bcfbf 100644 --- a/install/CMakeLists.txt +++ b/install/CMakeLists.txt @@ -1,5 +1,3 @@ -# Get the macros and functions we'll need -include("${PROJECT_SOURCE_DIR}/cmake/helper.cmake") include(CMakePackageConfigHelpers) # Install the library and necessary include files @@ -50,4 +48,4 @@ configure_file( install( FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig -) \ No newline at end of file +)