From 2811bd9753475ffe103afc47fc065abd25f82781 Mon Sep 17 00:00:00 2001 From: Nathan Miller Date: Tue, 18 Jun 2024 16:20:53 -0600 Subject: [PATCH] BUG: Removed extra whitespace in add_library --- docs/sphinx/changelog.rst | 1 + src/cpp/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/changelog.rst b/docs/sphinx/changelog.rst index e2841898..0c2a99e1 100644 --- a/docs/sphinx/changelog.rst +++ b/docs/sphinx/changelog.rst @@ -61,6 +61,7 @@ Bug Fixes - Corrected issue where libxsmm is not being used but was still required to be installed (:pull:`93`). By `Nathan Miller`_. - Residuals setting initial guesses now force a reset of the current configurations (:pull:`110`). By `Nathan Miller`_. - Direction vectors of length zero are now handled correctly (:pull:`116`). By `Nathan Miller`_. +- Removed extra whitespace in add_library from CMakeLists file (:pull:`120`). By `Nathan Miller`_. ****************** 0.4.1 (01-24-2024) diff --git a/src/cpp/CMakeLists.txt b/src/cpp/CMakeLists.txt index b2c1c012..33331542 100644 --- a/src/cpp/CMakeLists.txt +++ b/src/cpp/CMakeLists.txt @@ -1,4 +1,4 @@ -add_library (${PROJECT_NAME} SHARED ${PROJECT_SOURCE_FILES}) +add_library(${PROJECT_NAME} SHARED ${PROJECT_SOURCE_FILES}) set_target_properties(${PROJECT_NAME} PROPERTIES PUBLIC_HEADER ${PROJECT_NAME}.h) target_link_libraries(${PROJECT_NAME} tardigrade_constitutive_tools tardigrade_stress_tools tardigrade_micromorphic_tools ${PROJECT_LINK_LIBRARIES}) target_compile_options(${PROJECT_NAME} PUBLIC)