[mtouch] Properly link with CoreAudioKit when not using simlauncher. (#49)

Also bump maccore to get new test.

commit xamarin/maccore@eb9c34d875
Author: Rolf Bjarne Kvinge <rolf@xamarin.com>
Date:   Fri May 13 12:46:04 2016 +0200

    [monotouch-test] Add test to ensure mtouch properly links with CoreAudioKit when not using simlauncher.
This commit is contained in:
Rolf Bjarne Kvinge 2016-05-13 14:23:49 +02:00 коммит произвёл Sebastien Pouliot
Родитель 87153e47c0
Коммит 0d376c521a
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,5 @@
ifdef ENABLE_XAMARIN ifdef ENABLE_XAMARIN
NEEDED_MACCORE_VERSION := 0b6c9c86bd31de83817b51290885e217dbdd6aa4 NEEDED_MACCORE_VERSION := eb9c34d8752ccbc74eafe267232c4c77ba8f631f
NEEDED_MACCORE_BRANCH := master NEEDED_MACCORE_BRANCH := master
MACCORE_DIRECTORY := maccore MACCORE_DIRECTORY := maccore

Просмотреть файл

@ -834,6 +834,10 @@ namespace Xamarin.Bundler
// framework specific processing // framework specific processing
switch (framework.Name) { switch (framework.Name) {
case "CoreAudioKit": case "CoreAudioKit":
// CoreAudioKit seems to be functional in the iOS 9 simulator.
if (app.IsSimulatorBuild && SDKVersion.Major < 9)
continue;
break;
case "Metal": case "Metal":
case "MetalKit": case "MetalKit":
case "MetalPerformanceShaders": case "MetalPerformanceShaders":