Skip to content

Commit

Permalink
Do not force mmacosx-version-min flag
Browse files Browse the repository at this point in the history
This should be handled by CMake with CMAKE_OSX_DEPLOYMENT_TARGET
  • Loading branch information
scribam authored and p0358 committed Oct 14, 2024
1 parent 05eeac6 commit 9d9e1c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ if(UNIX)
target_link_libraries(discord-rpc PUBLIC pthread)

if (APPLE)
target_link_libraries(discord-rpc PRIVATE "-framework AppKit, -mmacosx-version-min=10.10")
target_link_libraries(discord-rpc PRIVATE "-framework AppKit")
endif (APPLE)

target_compile_options(discord-rpc PRIVATE
Expand Down

0 comments on commit 9d9e1c8

Please sign in to comment.