Changes between Version 2 and Version 3 of BundleDesignMac

Timestamp:
Jan 14, 2012, 10:36:39 PM (13 years ago)
Author:
Juicyfruit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BundleDesignMac

    v2 v3  
    1919== Libraries to be build ==
    2020
    21  * [http://kcat.strangesoft.net/openal.html#download OpenALsoft ] same openal as used on linux. Fixes all the mac openal sound bugs I could find seems to be ABI compatible with Apple OpenAL Building
     21 * [http://kcat.strangesoft.net/openal.html#download OpenALsoft ] same openal as used on linux. Fixes all the mac openal sound bugs I could find seems to be ABI compatible with Apple OpenAL Building. I had to add one itom in line 614 to CMakeLists.txt: SET(EXTRA_LIBS /System/Library/Frameworks/AudioToolbox.framework ${EXTRA_LIBS}) afther that i could make with:
     22{{{
     23cmake . -DCMAKE_C_FLAGS='-isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -arch x86_64 -arch i386' \
     24-DCMAKE_C_LINK_FLAGS='-mmacosx-version-min=10.5 -Wl,-syslibroot,/Developer/SDKs/MacOSX10.5.sdk -arch x86_64 -arch i386' \
     25-DCMAKE_OSX_SYSROOT=/Developer/SDKs/MacOSX10.5.sdk
     26}}}
     27
    2228
    2329== Building with automake ==