Skip to content

Commit

Permalink
BUG: Removed extra whitespace in add_library
Browse files Browse the repository at this point in the history
  • Loading branch information
NateAM committed Jun 18, 2024
1 parent 1f000ff commit 2811bd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/sphinx/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 2811bd9

Please sign in to comment.