Commit 0dd18c25 authored by Marco Serantoni's avatar Marco Serantoni

[MacOSX] Cleanup

parent d337d340
...@@ -88,6 +88,9 @@ endfunction() ...@@ -88,6 +88,9 @@ endfunction()
string( REPLACE "unit_test_framework" "test" boost_libs_list "${BOOST_LIBS_BUILT}" ) string( REPLACE "unit_test_framework" "test" boost_libs_list "${BOOST_LIBS_BUILT}" )
#message( STATUS "REPLACE libs_csv:${boost_libs_list}" ) #message( STATUS "REPLACE libs_csv:${boost_libs_list}" )
# Default Toolset
set( BOOST_TOOLSET "toolset=gcc" )
if( MINGW ) if( MINGW )
if( MSYS ) if( MSYS )
# The Boost system does not build properly on MSYS using bootstrap.sh. Running # The Boost system does not build properly on MSYS using bootstrap.sh. Running
...@@ -113,7 +116,6 @@ else() ...@@ -113,7 +116,6 @@ else()
unset( b2_libs ) unset( b2_libs )
endif() endif()
set( TOOLSET "toolset=gcc" )
if( APPLE ) if( APPLE )
# I set this to being compatible with wxWidgets # I set this to being compatible with wxWidgets
...@@ -121,7 +123,7 @@ if( APPLE ) ...@@ -121,7 +123,7 @@ if( APPLE )
# has switched to libc++ (llvm) by default # has switched to libc++ (llvm) by default
set(BOOST_CXXFLAGS "cxxflags=-mmacosx-version-min=10.5" ) set(BOOST_CXXFLAGS "cxxflags=-mmacosx-version-min=10.5" )
set(BOOST_LINKFLAGS "linkflags=-mmacosx-version-min=10.5" ) set(BOOST_LINKFLAGS "linkflags=-mmacosx-version-min=10.5" )
set( TOOLSET "" ) set(BOOST_TOOLSET "toolset=darwin" )
if( CMAKE_OSX_ARCHITECTURES ) if( CMAKE_OSX_ARCHITECTURES )
...@@ -169,7 +171,7 @@ ExternalProject_Add( boost ...@@ -169,7 +171,7 @@ ExternalProject_Add( boost
variant=release variant=release
threading=multi threading=multi
${PIC_STUFF} ${PIC_STUFF}
${TOOLSET} ${BOOST_TOOLSET}
${BOOST_CXXFLAGS} ${BOOST_CXXFLAGS}
${BOOST_LINKFLAGS} ${BOOST_LINKFLAGS}
${BOOST_ADDRESSMODEL} ${BOOST_ADDRESSMODEL}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment