From b44a7668715dea57eb71f369fe2eb230c9e26170 Mon Sep 17 00:00:00 2001 From: Patrick Kappl Date: Mon, 5 Aug 2024 16:15:35 +0200 Subject: [PATCH 1/3] Fix target_sources for INSTALL_INTERFACE --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7821b27..c81ec2a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,11 +71,11 @@ target_sources(wg21_linear_algebra $ $ $ - $ - $ - $ - $ - $ + $ + $ + $ + $ + $ $ ) From 711a7f608d2af202797890f8cd7352fc06f3402f Mon Sep 17 00:00:00 2001 From: Patrick Kappl Date: Mon, 5 Aug 2024 16:45:28 +0200 Subject: [PATCH 2/3] Install header files without .hpp extension too The header file "matrix" was not installed because it didn't match the pattern "*.hpp". --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c81ec2a..2aa4880 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -109,8 +109,6 @@ if (${LA_INSTALL}) "${CMAKE_CURRENT_SOURCE_DIR}/include/" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} - FILES_MATCHING PATTERN - "*.hpp" ) install( From c96968ba685cc0e8a72b77d3a7594f40d64cae32 Mon Sep 17 00:00:00 2001 From: Patrick Kappl Date: Mon, 5 Aug 2024 16:58:12 +0200 Subject: [PATCH 3/3] Fix incorrect filename in comment in matrix header --- include/matrix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/matrix b/include/matrix index a9a4e62..97803f9 100644 --- a/include/matrix +++ b/include/matrix @@ -1,5 +1,5 @@ //================================================================================================== -// File: linear_algebra.hpp +// File: matrix // // Summary: This is a driver header for including all of the linear algebra facilities // defined by the library.