Skip to content

Commit 0543580

Browse files
committed
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.
1 parent d956809 commit 0543580

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

install/CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Get the macros and functions we'll need
2-
include("${PROJECT_SOURCE_DIR}/cmake/helper.cmake")
31
include(CMakePackageConfigHelpers)
42

53
# Install the library and necessary include files
@@ -50,4 +48,4 @@ configure_file(
5048
install(
5149
FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc
5250
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig
53-
)
51+
)

0 commit comments

Comments
 (0)