# HG changeset patch # User Sebastien Jodogne # Date 1438446660 -7200 # Node ID 26a230647a7376c0f9b5bb626861892a3071ab77 # Parent b7bc8509cbcc4d47df8238d19fcaff285555d9a8 support of os x diff -r b7bc8509cbcc -r 26a230647a73 CMakeLists.txt --- a/CMakeLists.txt Fri Jul 31 11:17:31 2015 +0200 +++ b/CMakeLists.txt Sat Aug 01 18:31:00 2015 +0200 @@ -124,6 +124,11 @@ SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--version-script=${CMAKE_SOURCE_DIR}/Orthanc/Plugins/Samples/Common/VersionScript.map -Wl,--no-undefined") endif() +if (APPLE) + SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework CoreFoundation") + SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -framework CoreFoundation") +endif() + set(CORE_SOURCES ${BOOST_SOURCES} diff -r b7bc8509cbcc -r 26a230647a73 NEWS --- a/NEWS Fri Jul 31 11:17:31 2015 +0200 +++ b/NEWS Sat Aug 01 18:31:00 2015 +0200 @@ -3,6 +3,7 @@ * Update to Boost 1.58.0 for static and Windows builds * Inject version information into Windows binaries +* Support of OS X Version 1.1 (2015-07-03)