Skip to content

Commit

Permalink
Update src.cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
onecoolx committed Jun 17, 2024
1 parent 37e8ce2 commit c8662bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/src.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ if (UNIX AND NOT APPLE)
elseif (APPLE)
find_library(CORETEXT_LIBRARY CoreText)
find_library(COREGRAPHICS_LIBRARY CoreGraphics)
target_link_libraries(picasso2_sw PUBLIC ${CORETEXT_LIBRARY} ${COREGRAPHICS_LIBRARY})
find_library(COREFOUNDATION_LIBRARY CoreFoundation)
target_link_libraries(picasso2_sw PUBLIC ${CORETEXT_LIBRARY} ${COREGRAPHICS_LIBRARY} ${COREFOUNDATION_LIBRARY})
endif()


0 comments on commit c8662bb

Please sign in to comment.