We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553aa89 commit dfe60b5Copy full SHA for dfe60b5
cpp/CMakeLists.txt
@@ -48,6 +48,8 @@ foreach(EXE IN LISTS EXECUTABLES)
48
target_link_libraries(${EXE} PRIVATE userenv ws2_32 bcrypt)
49
endif()
50
if(APPLE)
51
+ find_library(CORESERVICES_LIB CoreServices)
52
+ target_link_libraries(${EXE} PRIVATE ${CORESERVICES_LIB})
53
target_link_libraries(${EXE} PRIVATE "-framework CoreFoundation -framework Security")
54
55
endforeach()
0 commit comments