Skip to content

Commit

Permalink
Add a newline
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Sep 13, 2024
1 parent 58fc0e3 commit e5f2eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fasl-lib.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ library and its header file."
(format stream "find_library(BASE_LIBRARY NAMES lib~A${CMAKE_SHARED_LIBRARY_SUFFIX})~%" *base-library-name*)
(format stream "add_library(~A SHARED ~{~A~^ ~}~@{ ~A~})~%" c-name source-filenames #+win32 "${BASE_LIBRARY}")
#-linux
(format stream "set_target_properties(~A PROPERTIES PREFIX \"\")" c-name)
(format stream "set_target_properties(~A PROPERTIES PREFIX \"\")~%" c-name)
(format stream "target_link_libraries(~A PRIVATE ${BASE_LIBRARY})~%" c-name)
(format stream "install(TARGETS ~A LIBRARY RUNTIME)~%" c-name)
(format stream "install(FILES ~A.h TYPE INCLUDE)~%" c-name))))

0 comments on commit e5f2eb9

Please sign in to comment.