From f6ebadf54ea322be313583fd3176744e8d4b1cc7 Mon Sep 17 00:00:00 2001 From: Nathan Miller Date: Tue, 18 Jun 2024 16:31:14 -0600 Subject: [PATCH] BUG: Removed leading whitespace in CMakeLists file --- docs/sphinx/changelog.rst | 4 ++++ src/cpp/CMakeLists.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/changelog.rst b/docs/sphinx/changelog.rst index e16645a..11f48d7 100644 --- a/docs/sphinx/changelog.rst +++ b/docs/sphinx/changelog.rst @@ -19,3 +19,7 @@ New Features Internal Changes ================ - Removed shared only library output (:pull:`5`). By `Nathan Miller`_. + +Bug Fixes +========= +- Removed leading whitespace for add_library call (:pull:`6`). By `Nathan Miller`_. diff --git a/src/cpp/CMakeLists.txt b/src/cpp/CMakeLists.txt index 781293b..a1bdb06 100644 --- a/src/cpp/CMakeLists.txt +++ b/src/cpp/CMakeLists.txt @@ -1,4 +1,4 @@ -add_library (${PROJECT_NAME} INTERFACE ${PROJECT_SOURCE_FILES}) +add_library(${PROJECT_NAME} INTERFACE ${PROJECT_SOURCE_FILES}) target_include_directories(${PROJECT_NAME} INTERFACE $ $)