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 $ $)