1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 47;
objects = {
/* Begin PBXBuildFile section */
2499965020A60882002B6ED8 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2499964F20A6087C002B6ED8 /* Accelerate.framework */; };
249B1A441E2FBB1F004F6566 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 249B1A431E2FBB1F004F6566 /* Assets.xcassets */; };
249B1A4A1E2FD95E004F6566 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 249B1A491E2FD95E004F6566 /* LaunchScreen.storyboard */; };
24D727291E33F9F400CEC022 /* csdStorage in Resources */ = {isa = PBXBuildFile; fileRef = 24D727281E33F9F400CEC022 /* csdStorage */; };
C41F0A8F1973607B00997479 /* audiofiletest.csd in Resources */ = {isa = PBXBuildFile; fileRef = C41F0A8E1973607B00997479 /* audiofiletest.csd */; };
C41F0A91197360AF00997479 /* recordTest.csd in Resources */ = {isa = PBXBuildFile; fileRef = C41F0A90197360AF00997479 /* recordTest.csd */; };
C41F0A93197360CD00997479 /* pitchshifter.csd in Resources */ = {isa = PBXBuildFile; fileRef = C41F0A92197360CD00997479 /* pitchshifter.csd */; };
C41F0A9A1973612A00997479 /* ConsoleOutputViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C41F0A971973612A00997479 /* ConsoleOutputViewController.m */; };
C41F0A9B1973612A00997479 /* ConsoleOutputViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41F0A981973612A00997479 /* ConsoleOutputViewController.xib */; };
C41F0A9E197361C400997479 /* ControlXYGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = C41F0A9D197361C400997479 /* ControlXYGrid.m */; };
C41F0AA1197361D200997479 /* ControlKnob.m in Sources */ = {isa = PBXBuildFile; fileRef = C41F0AA0197361D200997479 /* ControlKnob.m */; };
C41F0AA41973620C00997479 /* LevelMeterView.m in Sources */ = {isa = PBXBuildFile; fileRef = C41F0AA31973620C00997479 /* LevelMeterView.m */; };
C46B769019B5C0A1000D4F95 /* InstrumentEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C46B768E19B5C0A1000D4F95 /* InstrumentEditorViewController.m */; };
C46B769119B5C0A1000D4F95 /* InstrumentEditorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C46B768F19B5C0A1000D4F95 /* InstrumentEditorViewController.xib */; };
C46B769319B5C604000D4F95 /* instrumentEditor.csd in Resources */ = {isa = PBXBuildFile; fileRef = C46B769219B5C604000D4F95 /* instrumentEditor.csd */; };
C486A13B198BA8DB00E19281 /* CsoundAccelerometerBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A12B198BA8DB00E19281 /* CsoundAccelerometerBinding.m */; };
C486A13C198BA8DB00E19281 /* CsoundAttitudeBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A12D198BA8DB00E19281 /* CsoundAttitudeBinding.m */; };
C486A13D198BA8DB00E19281 /* CsoundGyroscopeBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A12F198BA8DB00E19281 /* CsoundGyroscopeBinding.m */; };
C486A13E198BA8DB00E19281 /* CsoundMotion.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A131198BA8DB00E19281 /* CsoundMotion.m */; };
C486A13F198BA8DB00E19281 /* CsoundButtonBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A134198BA8DB00E19281 /* CsoundButtonBinding.m */; };
C486A140198BA8DB00E19281 /* CsoundSliderBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A136198BA8DB00E19281 /* CsoundSliderBinding.m */; };
C486A141198BA8DB00E19281 /* CsoundSwitchBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A138198BA8DB00E19281 /* CsoundSwitchBinding.m */; };
C486A142198BA8DB00E19281 /* CsoundUI.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A13A198BA8DB00E19281 /* CsoundUI.m */; };
C486A145198BF06700E19281 /* CsoundMomentaryButtonBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A144198BF06700E19281 /* CsoundMomentaryButtonBinding.m */; };
C486A148198BF32E00E19281 /* CsoundLabelBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = C486A147198BF32E00E19281 /* CsoundLabelBinding.m */; };
F604B21618288A9E00C7C552 /* libcsound.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F604B21518288A9E00C7C552 /* libcsound.a */; };
F6968A4E16B07AC90089C462 /* trapped.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6968A4D16B07AC90089C462 /* trapped.csd */; };
F6968A5716B07BA00089C462 /* TrappedGeneratorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6968A5516B07BA00089C462 /* TrappedGeneratorViewController.m */; };
F6968A5816B07BA00089C462 /* TrappedGeneratorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6968A5616B07BA00089C462 /* TrappedGeneratorViewController.xib */; };
F6B6466A14D348E5005F786B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6466914D348E5005F786B /* main.m */; };
F6B6466E14D348E5005F786B /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6466D14D348E5005F786B /* AppDelegate.m */; };
F6B6467114D348E5005F786B /* MasterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6467014D348E5005F786B /* MasterViewController.m */; };
F6B6467414D348E5005F786B /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6467314D348E5005F786B /* DetailViewController.m */; };
F6B6467714D348E5005F786B /* MasterViewController_iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6467514D348E5005F786B /* MasterViewController_iPhone.xib */; };
F6B6467A14D348E5005F786B /* MasterViewController_iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6467814D348E5005F786B /* MasterViewController_iPad.xib */; };
F6B6467D14D348E5005F786B /* DetailViewController_iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6467B14D348E5005F786B /* DetailViewController_iPhone.xib */; };
F6B6468014D348E5005F786B /* DetailViewController_iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6467E14D348E5005F786B /* DetailViewController_iPad.xib */; };
F6B6474814D353A7005F786B /* AudioFileTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B646F314D353A7005F786B /* AudioFileTestViewController.m */; };
F6B6474914D353A7005F786B /* AudioFileTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B646F414D353A7005F786B /* AudioFileTestViewController.xib */; };
F6B6474C14D353A7005F786B /* audioInTest.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B646F814D353A7005F786B /* audioInTest.csd */; };
F6B6474D14D353A7005F786B /* AudioInTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B646FA14D353A7005F786B /* AudioInTestViewController.m */; };
F6B6474E14D353A7005F786B /* AudioInTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B646FB14D353A7005F786B /* AudioInTestViewController.xib */; };
F6B6475714D353A7005F786B /* BaseCsoundViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6470914D353A7005F786B /* BaseCsoundViewController.m */; };
F6B6475814D353A7005F786B /* buttonTest.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6470B14D353A7005F786B /* buttonTest.csd */; };
F6B6475914D353A7005F786B /* ButtonTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6470D14D353A7005F786B /* ButtonTestViewController.m */; };
F6B6475A14D353A7005F786B /* ButtonTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6470E14D353A7005F786B /* ButtonTestViewController.xib */; };
F6B6475B14D353A7005F786B /* CsoundHaiku4ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6471114D353A7005F786B /* CsoundHaiku4ViewController.m */; };
F6B6475C14D353A7005F786B /* CsoundHaiku4ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6471214D353A7005F786B /* CsoundHaiku4ViewController.xib */; };
F6B6475D14D353A7005F786B /* IV.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6471314D353A7005F786B /* IV.csd */; };
F6B6475E14D353A7005F786B /* hardwareTest.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6471514D353A7005F786B /* hardwareTest.csd */; };
F6B6475F14D353A7005F786B /* HardwareTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6471714D353A7005F786B /* HardwareTestViewController.m */; };
F6B6476014D353A7005F786B /* HardwareTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6471814D353A7005F786B /* HardwareTestViewController.xib */; };
F6B6476114D353A7005F786B /* harmonizer.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6471A14D353A7005F786B /* harmonizer.csd */; };
F6B6476214D353A7005F786B /* HarmonizerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6471C14D353A7005F786B /* HarmonizerTest.m */; };
F6B6476314D353A7005F786B /* HarmonizerTest.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6471D14D353A7005F786B /* HarmonizerTest.xib */; };
F6B6476614D353A7005F786B /* CsoundVirtualKeyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6472414D353A7005F786B /* CsoundVirtualKeyboard.m */; };
F6B6476714D353A7005F786B /* midiTest.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6472514D353A7005F786B /* midiTest.csd */; };
F6B6476814D353A7005F786B /* MidiTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6472714D353A7005F786B /* MidiTestViewController.m */; };
F6B6476914D353A7005F786B /* MidiTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6472814D353A7005F786B /* MidiTestViewController.xib */; };
F6B6476A14D353A7005F786B /* MidiTestViewController_iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6472914D353A7005F786B /* MidiTestViewController_iPad.xib */; };
F6B6476B14D353A7005F786B /* multiTouchXY.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6472B14D353A7005F786B /* multiTouchXY.csd */; };
F6B6476C14D353A7005F786B /* MultiTouchXYViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6472D14D353A7005F786B /* MultiTouchXYViewController.m */; };
F6B6476D14D353A7005F786B /* MultiTouchXYViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6472E14D353A7005F786B /* MultiTouchXYViewController.xib */; };
F6B6476E14D353A7005F786B /* PitchShifterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6473114D353A7005F786B /* PitchShifterViewController.m */; };
F6B6476F14D353A7005F786B /* PitchShifterViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6473214D353A7005F786B /* PitchShifterViewController.xib */; };
F6B6477014D353A7005F786B /* RecordTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6473514D353A7005F786B /* RecordTestViewController.m */; };
F6B6477114D353A7005F786B /* RecordTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6473614D353A7005F786B /* RecordTestViewController.xib */; };
F6B6477214D353A7005F786B /* SimpleTest1ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6473914D353A7005F786B /* SimpleTest1ViewController.m */; };
F6B6477314D353A7005F786B /* SimpleTest1ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6473A14D353A7005F786B /* SimpleTest1ViewController.xib */; };
F6B6477414D353A7005F786B /* test.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6473B14D353A7005F786B /* test.csd */; };
F6B6477514D353A7005F786B /* SimpleTest2ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6473E14D353A7005F786B /* SimpleTest2ViewController.m */; };
F6B6477614D353A7005F786B /* SimpleTest2ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6473F14D353A7005F786B /* SimpleTest2ViewController.xib */; };
F6B6477714D353A7005F786B /* test2.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6474014D353A7005F786B /* test2.csd */; };
F6B6477814D353A7005F786B /* Waveview.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6474314D353A7005F786B /* Waveview.m */; };
F6B6477914D353A7005F786B /* Waveviewtest.csd in Resources */ = {isa = PBXBuildFile; fileRef = F6B6474414D353A7005F786B /* Waveviewtest.csd */; };
F6B6477A14D353A7005F786B /* WaveviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6474614D353A7005F786B /* WaveviewViewController.m */; };
F6B6477B14D353A7005F786B /* WaveviewViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6B6474714D353A7005F786B /* WaveviewViewController.xib */; };
F6B647BA14D353D2005F786B /* CsoundObj.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6477F14D353D2005F786B /* CsoundObj.m */; };
F6B647BB14D353D2005F786B /* CsoundMIDI.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6478214D353D2005F786B /* CsoundMIDI.m */; };
F6B647BC14D353D2005F786B /* MidiWidgetsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6478414D353D2005F786B /* MidiWidgetsManager.m */; };
F6B647BD14D353D2005F786B /* SliderMidiWidgetWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6478714D353D2005F786B /* SliderMidiWidgetWrapper.m */; };
F6B647D014D353D2005F786B /* libsndfile.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F6B647B914D353D2005F786B /* libsndfile.a */; };
F6EE378B16AD67C50050820E /* testAudioFile.aif in Resources */ = {isa = PBXBuildFile; fileRef = F6EE378A16AD67C50050820E /* testAudioFile.aif */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
2499964F20A6087C002B6ED8 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
249B1A431E2FBB1F004F6566 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
249B1A491E2FD95E004F6566 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
24D727281E33F9F400CEC022 /* csdStorage */ = {isa = PBXFileReference; lastKnownFileType = folder; path = csdStorage; sourceTree = "<group>"; };
57F227EA270C49DF003E71F1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MasterViewController_iPhone.xib; sourceTree = "<group>"; };
57F227EB270C4A04003E71F1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MasterViewController_iPad.xib; sourceTree = "<group>"; };
57F227EC270C4A34003E71F1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/DetailViewController_iPhone.xib; sourceTree = "<group>"; };
57F227ED270C4A53003E71F1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/DetailViewController_iPad.xib; sourceTree = "<group>"; };
C41F0A8E1973607B00997479 /* audiofiletest.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = audiofiletest.csd; sourceTree = "<group>"; };
C41F0A90197360AF00997479 /* recordTest.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = recordTest.csd; sourceTree = "<group>"; };
C41F0A92197360CD00997479 /* pitchshifter.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pitchshifter.csd; sourceTree = "<group>"; };
C41F0A961973612A00997479 /* ConsoleOutputViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConsoleOutputViewController.h; sourceTree = "<group>"; };
C41F0A971973612A00997479 /* ConsoleOutputViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ConsoleOutputViewController.m; sourceTree = "<group>"; };
C41F0A981973612A00997479 /* ConsoleOutputViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ConsoleOutputViewController.xib; sourceTree = "<group>"; };
C41F0A9C197361C400997479 /* ControlXYGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlXYGrid.h; sourceTree = "<group>"; };
C41F0A9D197361C400997479 /* ControlXYGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlXYGrid.m; sourceTree = "<group>"; };
C41F0A9F197361D200997479 /* ControlKnob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlKnob.h; sourceTree = "<group>"; };
C41F0AA0197361D200997479 /* ControlKnob.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlKnob.m; sourceTree = "<group>"; };
C41F0AA21973620C00997479 /* LevelMeterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LevelMeterView.h; path = "Csound iOS Examples/ViewControllers/RecordTest/LevelMeterView.h"; sourceTree = SOURCE_ROOT; };
C41F0AA31973620C00997479 /* LevelMeterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LevelMeterView.m; path = "Csound iOS Examples/ViewControllers/RecordTest/LevelMeterView.m"; sourceTree = SOURCE_ROOT; };
C46B768D19B5C0A1000D4F95 /* InstrumentEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InstrumentEditorViewController.h; path = InstrumentEditor/InstrumentEditorViewController.h; sourceTree = "<group>"; };
C46B768E19B5C0A1000D4F95 /* InstrumentEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = InstrumentEditorViewController.m; path = InstrumentEditor/InstrumentEditorViewController.m; sourceTree = "<group>"; };
C46B768F19B5C0A1000D4F95 /* InstrumentEditorViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = InstrumentEditorViewController.xib; path = InstrumentEditor/InstrumentEditorViewController.xib; sourceTree = "<group>"; };
C46B769219B5C604000D4F95 /* instrumentEditor.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = instrumentEditor.csd; path = InstrumentEditor/instrumentEditor.csd; sourceTree = "<group>"; };
C486A12A198BA8DB00E19281 /* CsoundAccelerometerBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundAccelerometerBinding.h; sourceTree = "<group>"; };
C486A12B198BA8DB00E19281 /* CsoundAccelerometerBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundAccelerometerBinding.m; sourceTree = "<group>"; };
C486A12C198BA8DB00E19281 /* CsoundAttitudeBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundAttitudeBinding.h; sourceTree = "<group>"; };
C486A12D198BA8DB00E19281 /* CsoundAttitudeBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundAttitudeBinding.m; sourceTree = "<group>"; };
C486A12E198BA8DB00E19281 /* CsoundGyroscopeBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundGyroscopeBinding.h; sourceTree = "<group>"; };
C486A12F198BA8DB00E19281 /* CsoundGyroscopeBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundGyroscopeBinding.m; sourceTree = "<group>"; };
C486A130198BA8DB00E19281 /* CsoundMotion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundMotion.h; sourceTree = "<group>"; };
C486A131198BA8DB00E19281 /* CsoundMotion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundMotion.m; sourceTree = "<group>"; };
C486A133198BA8DB00E19281 /* CsoundButtonBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundButtonBinding.h; sourceTree = "<group>"; };
C486A134198BA8DB00E19281 /* CsoundButtonBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundButtonBinding.m; sourceTree = "<group>"; };
C486A135198BA8DB00E19281 /* CsoundSliderBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundSliderBinding.h; sourceTree = "<group>"; };
C486A136198BA8DB00E19281 /* CsoundSliderBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundSliderBinding.m; sourceTree = "<group>"; };
C486A137198BA8DB00E19281 /* CsoundSwitchBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundSwitchBinding.h; sourceTree = "<group>"; };
C486A138198BA8DB00E19281 /* CsoundSwitchBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundSwitchBinding.m; sourceTree = "<group>"; };
C486A139198BA8DB00E19281 /* CsoundUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundUI.h; sourceTree = "<group>"; };
C486A13A198BA8DB00E19281 /* CsoundUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundUI.m; sourceTree = "<group>"; };
C486A143198BF06700E19281 /* CsoundMomentaryButtonBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundMomentaryButtonBinding.h; sourceTree = "<group>"; };
C486A144198BF06700E19281 /* CsoundMomentaryButtonBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundMomentaryButtonBinding.m; sourceTree = "<group>"; };
C486A146198BF32E00E19281 /* CsoundLabelBinding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundLabelBinding.h; sourceTree = "<group>"; };
C486A147198BF32E00E19281 /* CsoundLabelBinding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundLabelBinding.m; sourceTree = "<group>"; };
F604B21518288A9E00C7C552 /* libcsound.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcsound.a; sourceTree = "<group>"; };
F6968A4D16B07AC90089C462 /* trapped.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = trapped.csd; sourceTree = "<group>"; };
F6968A5416B07BA00089C462 /* TrappedGeneratorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TrappedGeneratorViewController.h; sourceTree = "<group>"; };
F6968A5516B07BA00089C462 /* TrappedGeneratorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TrappedGeneratorViewController.m; sourceTree = "<group>"; };
F6968A5616B07BA00089C462 /* TrappedGeneratorViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TrappedGeneratorViewController.xib; sourceTree = "<group>"; };
F6B6465914D348E5005F786B /* Csound iOS Examples.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Csound iOS Examples.app"; sourceTree = BUILT_PRODUCTS_DIR; };
F6B6466514D348E5005F786B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F6B6466914D348E5005F786B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
F6B6466C14D348E5005F786B /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
F6B6466D14D348E5005F786B /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
F6B6466F14D348E5005F786B /* MasterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MasterViewController.h; sourceTree = "<group>"; };
F6B6467014D348E5005F786B /* MasterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MasterViewController.m; sourceTree = "<group>"; };
F6B6467214D348E5005F786B /* DetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailViewController.h; sourceTree = "<group>"; };
F6B6467314D348E5005F786B /* DetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailViewController.m; sourceTree = "<group>"; };
F6B646F214D353A7005F786B /* AudioFileTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioFileTestViewController.h; sourceTree = "<group>"; };
F6B646F314D353A7005F786B /* AudioFileTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioFileTestViewController.m; sourceTree = "<group>"; };
F6B646F414D353A7005F786B /* AudioFileTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AudioFileTestViewController.xib; sourceTree = "<group>"; };
F6B646F814D353A7005F786B /* audioInTest.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = audioInTest.csd; sourceTree = "<group>"; };
F6B646F914D353A7005F786B /* AudioInTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioInTestViewController.h; sourceTree = "<group>"; };
F6B646FA14D353A7005F786B /* AudioInTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioInTestViewController.m; sourceTree = "<group>"; };
F6B646FB14D353A7005F786B /* AudioInTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AudioInTestViewController.xib; sourceTree = "<group>"; };
F6B6470814D353A7005F786B /* BaseCsoundViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseCsoundViewController.h; sourceTree = "<group>"; };
F6B6470914D353A7005F786B /* BaseCsoundViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseCsoundViewController.m; sourceTree = "<group>"; };
F6B6470B14D353A7005F786B /* buttonTest.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = buttonTest.csd; sourceTree = "<group>"; };
F6B6470C14D353A7005F786B /* ButtonTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ButtonTestViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
F6B6470D14D353A7005F786B /* ButtonTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ButtonTestViewController.m; sourceTree = "<group>"; };
F6B6470E14D353A7005F786B /* ButtonTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ButtonTestViewController.xib; sourceTree = "<group>"; };
F6B6471014D353A7005F786B /* CsoundHaiku4ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundHaiku4ViewController.h; sourceTree = "<group>"; };
F6B6471114D353A7005F786B /* CsoundHaiku4ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundHaiku4ViewController.m; sourceTree = "<group>"; };
F6B6471214D353A7005F786B /* CsoundHaiku4ViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CsoundHaiku4ViewController.xib; sourceTree = "<group>"; };
F6B6471314D353A7005F786B /* IV.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IV.csd; sourceTree = "<group>"; };
F6B6471514D353A7005F786B /* hardwareTest.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = hardwareTest.csd; sourceTree = "<group>"; };
F6B6471614D353A7005F786B /* HardwareTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HardwareTestViewController.h; sourceTree = "<group>"; };
F6B6471714D353A7005F786B /* HardwareTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HardwareTestViewController.m; sourceTree = "<group>"; };
F6B6471814D353A7005F786B /* HardwareTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HardwareTestViewController.xib; sourceTree = "<group>"; };
F6B6471A14D353A7005F786B /* harmonizer.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = harmonizer.csd; sourceTree = "<group>"; };
F6B6471B14D353A7005F786B /* HarmonizerTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HarmonizerTest.h; sourceTree = "<group>"; };
F6B6471C14D353A7005F786B /* HarmonizerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HarmonizerTest.m; sourceTree = "<group>"; };
F6B6471D14D353A7005F786B /* HarmonizerTest.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HarmonizerTest.xib; sourceTree = "<group>"; };
F6B6472314D353A7005F786B /* CsoundVirtualKeyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundVirtualKeyboard.h; sourceTree = "<group>"; };
F6B6472414D353A7005F786B /* CsoundVirtualKeyboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundVirtualKeyboard.m; sourceTree = "<group>"; };
F6B6472514D353A7005F786B /* midiTest.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = midiTest.csd; sourceTree = "<group>"; };
F6B6472614D353A7005F786B /* MidiTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MidiTestViewController.h; sourceTree = "<group>"; };
F6B6472714D353A7005F786B /* MidiTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MidiTestViewController.m; sourceTree = "<group>"; };
F6B6472814D353A7005F786B /* MidiTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MidiTestViewController.xib; sourceTree = "<group>"; };
F6B6472914D353A7005F786B /* MidiTestViewController_iPad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MidiTestViewController_iPad.xib; sourceTree = "<group>"; };
F6B6472B14D353A7005F786B /* multiTouchXY.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = multiTouchXY.csd; sourceTree = "<group>"; };
F6B6472C14D353A7005F786B /* MultiTouchXYViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultiTouchXYViewController.h; sourceTree = "<group>"; };
F6B6472D14D353A7005F786B /* MultiTouchXYViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultiTouchXYViewController.m; sourceTree = "<group>"; };
F6B6472E14D353A7005F786B /* MultiTouchXYViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MultiTouchXYViewController.xib; sourceTree = "<group>"; };
F6B6473014D353A7005F786B /* PitchShifterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PitchShifterViewController.h; sourceTree = "<group>"; };
F6B6473114D353A7005F786B /* PitchShifterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PitchShifterViewController.m; sourceTree = "<group>"; };
F6B6473214D353A7005F786B /* PitchShifterViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PitchShifterViewController.xib; sourceTree = "<group>"; };
F6B6473414D353A7005F786B /* RecordTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordTestViewController.h; sourceTree = "<group>"; };
F6B6473514D353A7005F786B /* RecordTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordTestViewController.m; sourceTree = "<group>"; };
F6B6473614D353A7005F786B /* RecordTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RecordTestViewController.xib; sourceTree = "<group>"; };
F6B6473814D353A7005F786B /* SimpleTest1ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleTest1ViewController.h; sourceTree = "<group>"; };
F6B6473914D353A7005F786B /* SimpleTest1ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleTest1ViewController.m; sourceTree = "<group>"; };
F6B6473A14D353A7005F786B /* SimpleTest1ViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SimpleTest1ViewController.xib; sourceTree = "<group>"; };
F6B6473B14D353A7005F786B /* test.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = test.csd; sourceTree = "<group>"; };
F6B6473D14D353A7005F786B /* SimpleTest2ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleTest2ViewController.h; sourceTree = "<group>"; };
F6B6473E14D353A7005F786B /* SimpleTest2ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleTest2ViewController.m; sourceTree = "<group>"; };
F6B6473F14D353A7005F786B /* SimpleTest2ViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SimpleTest2ViewController.xib; sourceTree = "<group>"; };
F6B6474014D353A7005F786B /* test2.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = test2.csd; sourceTree = "<group>"; };
F6B6474214D353A7005F786B /* Waveview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Waveview.h; sourceTree = "<group>"; };
F6B6474314D353A7005F786B /* Waveview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Waveview.m; sourceTree = "<group>"; };
F6B6474414D353A7005F786B /* Waveviewtest.csd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Waveviewtest.csd; sourceTree = "<group>"; };
F6B6474514D353A7005F786B /* WaveviewViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaveviewViewController.h; sourceTree = "<group>"; };
F6B6474614D353A7005F786B /* WaveviewViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WaveviewViewController.m; sourceTree = "<group>"; };
F6B6474714D353A7005F786B /* WaveviewViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WaveviewViewController.xib; sourceTree = "<group>"; };
F6B6477E14D353D2005F786B /* CsoundObj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundObj.h; sourceTree = "<group>"; };
F6B6477F14D353D2005F786B /* CsoundObj.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundObj.m; sourceTree = "<group>"; };
F6B6478114D353D2005F786B /* CsoundMIDI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CsoundMIDI.h; sourceTree = "<group>"; };
F6B6478214D353D2005F786B /* CsoundMIDI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CsoundMIDI.m; sourceTree = "<group>"; };
F6B6478314D353D2005F786B /* MidiWidgetsManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MidiWidgetsManager.h; sourceTree = "<group>"; };
F6B6478414D353D2005F786B /* MidiWidgetsManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MidiWidgetsManager.m; sourceTree = "<group>"; };
F6B6478514D353D2005F786B /* MidiWidgetWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MidiWidgetWrapper.h; sourceTree = "<group>"; };
F6B6478614D353D2005F786B /* SliderMidiWidgetWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SliderMidiWidgetWrapper.h; sourceTree = "<group>"; };
F6B6478714D353D2005F786B /* SliderMidiWidgetWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SliderMidiWidgetWrapper.m; sourceTree = "<group>"; };
F6B647A414D353D2005F786B /* cfgvar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cfgvar.h; sourceTree = "<group>"; };
F6B647A514D353D2005F786B /* CppSound.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = CppSound.hpp; sourceTree = "<group>"; };
F6B647A614D353D2005F786B /* cscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cscore.h; sourceTree = "<group>"; };
F6B647A714D353D2005F786B /* csdl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csdl.h; sourceTree = "<group>"; };
F6B647A814D353D2005F786B /* csound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csound.h; sourceTree = "<group>"; };
F6B647A914D353D2005F786B /* csound.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = csound.hpp; sourceTree = "<group>"; };
F6B647AA14D353D2005F786B /* csoundCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csoundCore.h; sourceTree = "<group>"; };
F6B647AB14D353D2005F786B /* CsoundFile.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = CsoundFile.hpp; sourceTree = "<group>"; };
F6B647AC14D353D2005F786B /* cwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cwindow.h; sourceTree = "<group>"; };
F6B647AD14D353D2005F786B /* filebuilding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filebuilding.h; sourceTree = "<group>"; };
F6B647AE14D353D2005F786B /* float-version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "float-version.h"; sourceTree = "<group>"; };
F6B647AF14D353D2005F786B /* msg_attr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msg_attr.h; sourceTree = "<group>"; };
F6B647B014D353D2005F786B /* OpcodeBase.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = OpcodeBase.hpp; sourceTree = "<group>"; };
F6B647B114D353D2005F786B /* pstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pstream.h; sourceTree = "<group>"; };
F6B647B214D353D2005F786B /* pvfileio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pvfileio.h; sourceTree = "<group>"; };
F6B647B314D353D2005F786B /* soundio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = soundio.h; sourceTree = "<group>"; };
F6B647B414D353D2005F786B /* sysdep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sysdep.h; sourceTree = "<group>"; };
F6B647B514D353D2005F786B /* text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = text.h; sourceTree = "<group>"; };
F6B647B614D353D2005F786B /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
F6B647B914D353D2005F786B /* libsndfile.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libsndfile.a; sourceTree = "<group>"; };
F6EE378A16AD67C50050820E /* testAudioFile.aif */ = {isa = PBXFileReference; lastKnownFileType = file; path = testAudioFile.aif; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
F6B6465614D348E5005F786B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2499965020A60882002B6ED8 /* Accelerate.framework in Frameworks */,
F604B21618288A9E00C7C552 /* libcsound.a in Frameworks */,
F6B647D014D353D2005F786B /* libsndfile.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
2499964E20A6087C002B6ED8 /* Frameworks */ = {
isa = PBXGroup;
children = (
2499964F20A6087C002B6ED8 /* Accelerate.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
C41F0A941973612A00997479 /* ConsoleOutput */ = {
isa = PBXGroup;
children = (
24D727281E33F9F400CEC022 /* csdStorage */,
C41F0A961973612A00997479 /* ConsoleOutputViewController.h */,
C41F0A971973612A00997479 /* ConsoleOutputViewController.m */,
C41F0A981973612A00997479 /* ConsoleOutputViewController.xib */,
);
path = ConsoleOutput;
sourceTree = "<group>";
};
C46B768919B5BF23000D4F95 /* InstrumentEditor */ = {
isa = PBXGroup;
children = (
C46B769219B5C604000D4F95 /* instrumentEditor.csd */,
C46B768D19B5C0A1000D4F95 /* InstrumentEditorViewController.h */,
C46B768E19B5C0A1000D4F95 /* InstrumentEditorViewController.m */,
C46B768F19B5C0A1000D4F95 /* InstrumentEditorViewController.xib */,
);
name = InstrumentEditor;
sourceTree = "<group>";
};
C486A128198BA8DB00E19281 /* Bindings */ = {
isa = PBXGroup;
children = (
C486A129198BA8DB00E19281 /* Device Motion */,
C486A132198BA8DB00E19281 /* User Interface */,
);
name = Bindings;
path = bindings;
sourceTree = "<group>";
};
C486A129198BA8DB00E19281 /* Device Motion */ = {
isa = PBXGroup;
children = (
C486A130198BA8DB00E19281 /* CsoundMotion.h */,
C486A131198BA8DB00E19281 /* CsoundMotion.m */,
C486A12A198BA8DB00E19281 /* CsoundAccelerometerBinding.h */,
C486A12B198BA8DB00E19281 /* CsoundAccelerometerBinding.m */,
C486A12C198BA8DB00E19281 /* CsoundAttitudeBinding.h */,
C486A12D198BA8DB00E19281 /* CsoundAttitudeBinding.m */,
C486A12E198BA8DB00E19281 /* CsoundGyroscopeBinding.h */,
C486A12F198BA8DB00E19281 /* CsoundGyroscopeBinding.m */,
);
name = "Device Motion";
path = motion;
sourceTree = "<group>";
};
C486A132198BA8DB00E19281 /* User Interface */ = {
isa = PBXGroup;
children = (
C486A139198BA8DB00E19281 /* CsoundUI.h */,
C486A13A198BA8DB00E19281 /* CsoundUI.m */,
C486A133198BA8DB00E19281 /* CsoundButtonBinding.h */,
C486A134198BA8DB00E19281 /* CsoundButtonBinding.m */,
C486A146198BF32E00E19281 /* CsoundLabelBinding.h */,
C486A147198BF32E00E19281 /* CsoundLabelBinding.m */,
C486A143198BF06700E19281 /* CsoundMomentaryButtonBinding.h */,
C486A144198BF06700E19281 /* CsoundMomentaryButtonBinding.m */,
C486A135198BA8DB00E19281 /* CsoundSliderBinding.h */,
C486A136198BA8DB00E19281 /* CsoundSliderBinding.m */,
C486A137198BA8DB00E19281 /* CsoundSwitchBinding.h */,
C486A138198BA8DB00E19281 /* CsoundSwitchBinding.m */,
);
name = "User Interface";
path = ui;
sourceTree = "<group>";
};
F6968A4B16B07A9D0089C462 /* TrappedGenerator */ = {
isa = PBXGroup;
children = (
F6968A4D16B07AC90089C462 /* trapped.csd */,
F6968A5416B07BA00089C462 /* TrappedGeneratorViewController.h */,
F6968A5516B07BA00089C462 /* TrappedGeneratorViewController.m */,
F6968A5616B07BA00089C462 /* TrappedGeneratorViewController.xib */,
);
path = TrappedGenerator;
sourceTree = "<group>";
};
F6B6464E14D348E4005F786B = {
isa = PBXGroup;
children = (
F6B6477C14D353D2005F786B /* csound-iOS */,
F6B6466314D348E5005F786B /* Csound iOS Examples */,
F6B6465A14D348E5005F786B /* Products */,
2499964E20A6087C002B6ED8 /* Frameworks */,
);
sourceTree = "<group>";
};
F6B6465A14D348E5005F786B /* Products */ = {
isa = PBXGroup;
children = (
F6B6465914D348E5005F786B /* Csound iOS Examples.app */,
);
name = Products;
sourceTree = "<group>";
};
F6B6466314D348E5005F786B /* Csound iOS Examples */ = {
isa = PBXGroup;
children = (
F6B646F014D353A7005F786B /* ViewControllers */,
F6B6466C14D348E5005F786B /* AppDelegate.h */,
F6B6466D14D348E5005F786B /* AppDelegate.m */,
F6B6466F14D348E5005F786B /* MasterViewController.h */,
F6B6467014D348E5005F786B /* MasterViewController.m */,
F6B6467214D348E5005F786B /* DetailViewController.h */,
F6B6467314D348E5005F786B /* DetailViewController.m */,
F6B6467514D348E5005F786B /* MasterViewController_iPhone.xib */,
F6B6467814D348E5005F786B /* MasterViewController_iPad.xib */,
F6B6467B14D348E5005F786B /* DetailViewController_iPhone.xib */,
F6B6467E14D348E5005F786B /* DetailViewController_iPad.xib */,
249B1A491E2FD95E004F6566 /* LaunchScreen.storyboard */,
249B1A431E2FBB1F004F6566 /* Assets.xcassets */,
F6B6466414D348E5005F786B /* Supporting Files */,
);
path = "Csound iOS Examples";
sourceTree = "<group>";
};
F6B6466414D348E5005F786B /* Supporting Files */ = {
isa = PBXGroup;
children = (
F6B6466514D348E5005F786B /* Info.plist */,
F6B6466914D348E5005F786B /* main.m */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
F6B646F014D353A7005F786B /* ViewControllers */ = {
isa = PBXGroup;
children = (
F6B6470814D353A7005F786B /* BaseCsoundViewController.h */,
F6B6470914D353A7005F786B /* BaseCsoundViewController.m */,
F6B646F114D353A7005F786B /* AudioFileTest */,
F6B646F514D353A7005F786B /* AudioInTest */,
F6B6470A14D353A7005F786B /* ButtonTest */,
C41F0A941973612A00997479 /* ConsoleOutput */,
F6B6470F14D353A7005F786B /* CsoundHaiku4 */,
F6B6471414D353A7005F786B /* HardwareTest */,
C46B768919B5BF23000D4F95 /* InstrumentEditor */,
F6B6471914D353A7005F786B /* Harmonizer */,
F6B6472214D353A7005F786B /* MidiTest */,
F6B6472A14D353A7005F786B /* MultiTouchXY */,
F6B6472F14D353A7005F786B /* PitchShifter */,
F6B6473314D353A7005F786B /* RecordTest */,
F6B6473714D353A7005F786B /* SimpleTest1 */,
F6B6473C14D353A7005F786B /* SimpleTest2 */,
F6B6474114D353A7005F786B /* Waveview */,
F6968A4B16B07A9D0089C462 /* TrappedGenerator */,
);
path = ViewControllers;
sourceTree = "<group>";
};
F6B646F114D353A7005F786B /* AudioFileTest */ = {
isa = PBXGroup;
children = (
C41F0A8E1973607B00997479 /* audiofiletest.csd */,
F6EE378A16AD67C50050820E /* testAudioFile.aif */,
F6B646F214D353A7005F786B /* AudioFileTestViewController.h */,
F6B646F314D353A7005F786B /* AudioFileTestViewController.m */,
F6B646F414D353A7005F786B /* AudioFileTestViewController.xib */,
C41F0A9F197361D200997479 /* ControlKnob.h */,
C41F0AA0197361D200997479 /* ControlKnob.m */,
);
path = AudioFileTest;
sourceTree = "<group>";
};
F6B646F514D353A7005F786B /* AudioInTest */ = {
isa = PBXGroup;
children = (
F6B646F814D353A7005F786B /* audioInTest.csd */,
F6B646F914D353A7005F786B /* AudioInTestViewController.h */,
F6B646FA14D353A7005F786B /* AudioInTestViewController.m */,
F6B646FB14D353A7005F786B /* AudioInTestViewController.xib */,
);
path = AudioInTest;
sourceTree = "<group>";
};
F6B6470A14D353A7005F786B /* ButtonTest */ = {
isa = PBXGroup;
children = (
F6B6470B14D353A7005F786B /* buttonTest.csd */,
F6B6470C14D353A7005F786B /* ButtonTestViewController.h */,
F6B6470D14D353A7005F786B /* ButtonTestViewController.m */,
F6B6470E14D353A7005F786B /* ButtonTestViewController.xib */,
);
path = ButtonTest;
sourceTree = "<group>";
};
F6B6470F14D353A7005F786B /* CsoundHaiku4 */ = {
isa = PBXGroup;
children = (
F6B6471314D353A7005F786B /* IV.csd */,
F6B6471014D353A7005F786B /* CsoundHaiku4ViewController.h */,
F6B6471114D353A7005F786B /* CsoundHaiku4ViewController.m */,
F6B6471214D353A7005F786B /* CsoundHaiku4ViewController.xib */,
);
path = CsoundHaiku4;
sourceTree = "<group>";
};
F6B6471414D353A7005F786B /* HardwareTest */ = {
isa = PBXGroup;
children = (
F6B6471514D353A7005F786B /* hardwareTest.csd */,
F6B6471614D353A7005F786B /* HardwareTestViewController.h */,
F6B6471714D353A7005F786B /* HardwareTestViewController.m */,
F6B6471814D353A7005F786B /* HardwareTestViewController.xib */,
);
path = HardwareTest;
sourceTree = "<group>";
};
F6B6471914D353A7005F786B /* Harmonizer */ = {
isa = PBXGroup;
children = (
F6B6471A14D353A7005F786B /* harmonizer.csd */,
F6B6471B14D353A7005F786B /* HarmonizerTest.h */,
F6B6471C14D353A7005F786B /* HarmonizerTest.m */,
F6B6471D14D353A7005F786B /* HarmonizerTest.xib */,
);
path = Harmonizer;
sourceTree = "<group>";
};
F6B6472214D353A7005F786B /* MidiTest */ = {
isa = PBXGroup;
children = (
F6B6472514D353A7005F786B /* midiTest.csd */,
F6B6472314D353A7005F786B /* CsoundVirtualKeyboard.h */,
F6B6472414D353A7005F786B /* CsoundVirtualKeyboard.m */,
F6B6472614D353A7005F786B /* MidiTestViewController.h */,
F6B6472714D353A7005F786B /* MidiTestViewController.m */,
F6B6472814D353A7005F786B /* MidiTestViewController.xib */,
F6B6472914D353A7005F786B /* MidiTestViewController_iPad.xib */,
);
path = MidiTest;
sourceTree = "<group>";
};
F6B6472A14D353A7005F786B /* MultiTouchXY */ = {
isa = PBXGroup;
children = (
F6B6472B14D353A7005F786B /* multiTouchXY.csd */,
F6B6472C14D353A7005F786B /* MultiTouchXYViewController.h */,
F6B6472D14D353A7005F786B /* MultiTouchXYViewController.m */,
F6B6472E14D353A7005F786B /* MultiTouchXYViewController.xib */,
);
path = MultiTouchXY;
sourceTree = "<group>";
};
F6B6472F14D353A7005F786B /* PitchShifter */ = {
isa = PBXGroup;
children = (
C41F0A92197360CD00997479 /* pitchshifter.csd */,
F6B6473014D353A7005F786B /* PitchShifterViewController.h */,
F6B6473114D353A7005F786B /* PitchShifterViewController.m */,
F6B6473214D353A7005F786B /* PitchShifterViewController.xib */,
C41F0A9C197361C400997479 /* ControlXYGrid.h */,
C41F0A9D197361C400997479 /* ControlXYGrid.m */,
);
path = PitchShifter;
sourceTree = "<group>";
};
F6B6473314D353A7005F786B /* RecordTest */ = {
isa = PBXGroup;
children = (
C41F0A90197360AF00997479 /* recordTest.csd */,
F6B6473414D353A7005F786B /* RecordTestViewController.h */,
F6B6473514D353A7005F786B /* RecordTestViewController.m */,
F6B6473614D353A7005F786B /* RecordTestViewController.xib */,
C41F0AA21973620C00997479 /* LevelMeterView.h */,
C41F0AA31973620C00997479 /* LevelMeterView.m */,
);
path = RecordTest;
sourceTree = "<group>";
};
F6B6473714D353A7005F786B /* SimpleTest1 */ = {
isa = PBXGroup;
children = (
F6B6473B14D353A7005F786B /* test.csd */,
F6B6473814D353A7005F786B /* SimpleTest1ViewController.h */,
F6B6473914D353A7005F786B /* SimpleTest1ViewController.m */,
F6B6473A14D353A7005F786B /* SimpleTest1ViewController.xib */,
);
path = SimpleTest1;
sourceTree = "<group>";
};
F6B6473C14D353A7005F786B /* SimpleTest2 */ = {
isa = PBXGroup;
children = (
F6B6474014D353A7005F786B /* test2.csd */,
F6B6473D14D353A7005F786B /* SimpleTest2ViewController.h */,
F6B6473E14D353A7005F786B /* SimpleTest2ViewController.m */,
F6B6473F14D353A7005F786B /* SimpleTest2ViewController.xib */,
);
path = SimpleTest2;
sourceTree = "<group>";
};
F6B6474114D353A7005F786B /* Waveview */ = {
isa = PBXGroup;
children = (
F6B6474414D353A7005F786B /* Waveviewtest.csd */,
F6B6474214D353A7005F786B /* Waveview.h */,
F6B6474314D353A7005F786B /* Waveview.m */,
F6B6474514D353A7005F786B /* WaveviewViewController.h */,
F6B6474614D353A7005F786B /* WaveviewViewController.m */,
F6B6474714D353A7005F786B /* WaveviewViewController.xib */,
);
path = Waveview;
sourceTree = "<group>";
};
F6B6477C14D353D2005F786B /* csound-iOS */ = {
isa = PBXGroup;
children = (
F6B6477D14D353D2005F786B /* classes */,
F6B647A314D353D2005F786B /* headers */,
F6B647B714D353D2005F786B /* libs */,
);
path = "csound-iOS";
sourceTree = "<group>";
};
F6B6477D14D353D2005F786B /* classes */ = {
isa = PBXGroup;
children = (
F6B6477E14D353D2005F786B /* CsoundObj.h */,
F6B6477F14D353D2005F786B /* CsoundObj.m */,
C486A128198BA8DB00E19281 /* Bindings */,
F6B6478014D353D2005F786B /* midi */,
);
path = classes;
sourceTree = "<group>";
};
F6B6478014D353D2005F786B /* midi */ = {
isa = PBXGroup;
children = (
F6B6478114D353D2005F786B /* CsoundMIDI.h */,
F6B6478214D353D2005F786B /* CsoundMIDI.m */,
F6B6478314D353D2005F786B /* MidiWidgetsManager.h */,
F6B6478414D353D2005F786B /* MidiWidgetsManager.m */,
F6B6478514D353D2005F786B /* MidiWidgetWrapper.h */,
F6B6478614D353D2005F786B /* SliderMidiWidgetWrapper.h */,
F6B6478714D353D2005F786B /* SliderMidiWidgetWrapper.m */,
);
path = midi;
sourceTree = "<group>";
};
F6B647A314D353D2005F786B /* headers */ = {
isa = PBXGroup;
children = (
F6B647A414D353D2005F786B /* cfgvar.h */,
F6B647A514D353D2005F786B /* CppSound.hpp */,
F6B647A614D353D2005F786B /* cscore.h */,
F6B647A714D353D2005F786B /* csdl.h */,
F6B647A814D353D2005F786B /* csound.h */,
F6B647A914D353D2005F786B /* csound.hpp */,
F6B647AA14D353D2005F786B /* csoundCore.h */,
F6B647AB14D353D2005F786B /* CsoundFile.hpp */,
F6B647AC14D353D2005F786B /* cwindow.h */,
F6B647AD14D353D2005F786B /* filebuilding.h */,
F6B647AE14D353D2005F786B /* float-version.h */,
F6B647AF14D353D2005F786B /* msg_attr.h */,
F6B647B014D353D2005F786B /* OpcodeBase.hpp */,
F6B647B114D353D2005F786B /* pstream.h */,
F6B647B214D353D2005F786B /* pvfileio.h */,
F6B647B314D353D2005F786B /* soundio.h */,
F6B647B414D353D2005F786B /* sysdep.h */,
F6B647B514D353D2005F786B /* text.h */,
F6B647B614D353D2005F786B /* version.h */,
);
path = headers;
sourceTree = "<group>";
};
F6B647B714D353D2005F786B /* libs */ = {
isa = PBXGroup;
children = (
F604B21518288A9E00C7C552 /* libcsound.a */,
F6B647B914D353D2005F786B /* libsndfile.a */,
);
path = libs;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
F6B6465814D348E5005F786B /* Csound iOS Examples */ = {
isa = PBXNativeTarget;
buildConfigurationList = F6B6468314D348E5005F786B /* Build configuration list for PBXNativeTarget "Csound iOS Examples" */;
buildPhases = (
F6B6465514D348E5005F786B /* Sources */,
F6B6465614D348E5005F786B /* Frameworks */,
F6B6465714D348E5005F786B /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "Csound iOS Examples";
productName = "Csound iOS Examples";
productReference = F6B6465914D348E5005F786B /* Csound iOS Examples.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
F6B6465014D348E4005F786B /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1250;
TargetAttributes = {
F6B6465814D348E5005F786B = {
DevelopmentTeam = JXB7KNW747;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = F6B6465314D348E4005F786B /* Build configuration list for PBXProject "Csound iOS Examples" */;
compatibilityVersion = "Xcode 6.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = F6B6464E14D348E4005F786B;
productRefGroup = F6B6465A14D348E5005F786B /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
F6B6465814D348E5005F786B /* Csound iOS Examples */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
F6B6465714D348E5005F786B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
F6B6467714D348E5005F786B /* MasterViewController_iPhone.xib in Resources */,
F6B6467A14D348E5005F786B /* MasterViewController_iPad.xib in Resources */,
F6B6467D14D348E5005F786B /* DetailViewController_iPhone.xib in Resources */,
F6B6468014D348E5005F786B /* DetailViewController_iPad.xib in Resources */,
F6B6474914D353A7005F786B /* AudioFileTestViewController.xib in Resources */,
F6B6474C14D353A7005F786B /* audioInTest.csd in Resources */,
C41F0A93197360CD00997479 /* pitchshifter.csd in Resources */,
C46B769319B5C604000D4F95 /* instrumentEditor.csd in Resources */,
C41F0A91197360AF00997479 /* recordTest.csd in Resources */,
F6B6474E14D353A7005F786B /* AudioInTestViewController.xib in Resources */,
F6B6475814D353A7005F786B /* buttonTest.csd in Resources */,
F6B6475A14D353A7005F786B /* ButtonTestViewController.xib in Resources */,
C46B769119B5C0A1000D4F95 /* InstrumentEditorViewController.xib in Resources */,
F6B6475C14D353A7005F786B /* CsoundHaiku4ViewController.xib in Resources */,
249B1A441E2FBB1F004F6566 /* Assets.xcassets in Resources */,
F6B6475D14D353A7005F786B /* IV.csd in Resources */,
F6B6475E14D353A7005F786B /* hardwareTest.csd in Resources */,
C41F0A9B1973612A00997479 /* ConsoleOutputViewController.xib in Resources */,
F6B6476014D353A7005F786B /* HardwareTestViewController.xib in Resources */,
F6B6476114D353A7005F786B /* harmonizer.csd in Resources */,
F6B6476314D353A7005F786B /* HarmonizerTest.xib in Resources */,
F6B6476714D353A7005F786B /* midiTest.csd in Resources */,
F6B6476914D353A7005F786B /* MidiTestViewController.xib in Resources */,
F6B6476A14D353A7005F786B /* MidiTestViewController_iPad.xib in Resources */,
F6B6476B14D353A7005F786B /* multiTouchXY.csd in Resources */,
24D727291E33F9F400CEC022 /* csdStorage in Resources */,
F6B6476D14D353A7005F786B /* MultiTouchXYViewController.xib in Resources */,
F6B6476F14D353A7005F786B /* PitchShifterViewController.xib in Resources */,
F6B6477114D353A7005F786B /* RecordTestViewController.xib in Resources */,
F6B6477314D353A7005F786B /* SimpleTest1ViewController.xib in Resources */,
F6B6477414D353A7005F786B /* test.csd in Resources */,
C41F0A8F1973607B00997479 /* audiofiletest.csd in Resources */,
F6B6477614D353A7005F786B /* SimpleTest2ViewController.xib in Resources */,
F6B6477714D353A7005F786B /* test2.csd in Resources */,
249B1A4A1E2FD95E004F6566 /* LaunchScreen.storyboard in Resources */,
F6B6477914D353A7005F786B /* Waveviewtest.csd in Resources */,
F6B6477B14D353A7005F786B /* WaveviewViewController.xib in Resources */,
F6EE378B16AD67C50050820E /* testAudioFile.aif in Resources */,
F6968A4E16B07AC90089C462 /* trapped.csd in Resources */,
F6968A5816B07BA00089C462 /* TrappedGeneratorViewController.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
F6B6465514D348E5005F786B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
F6B6466A14D348E5005F786B /* main.m in Sources */,
F6B6466E14D348E5005F786B /* AppDelegate.m in Sources */,
F6B6467114D348E5005F786B /* MasterViewController.m in Sources */,
C41F0AA41973620C00997479 /* LevelMeterView.m in Sources */,
F6B6467414D348E5005F786B /* DetailViewController.m in Sources */,
F6B6474814D353A7005F786B /* AudioFileTestViewController.m in Sources */,
C486A140198BA8DB00E19281 /* CsoundSliderBinding.m in Sources */,
F6B6474D14D353A7005F786B /* AudioInTestViewController.m in Sources */,
C486A13B198BA8DB00E19281 /* CsoundAccelerometerBinding.m in Sources */,
F6B6475714D353A7005F786B /* BaseCsoundViewController.m in Sources */,
F6B6475914D353A7005F786B /* ButtonTestViewController.m in Sources */,
C486A145198BF06700E19281 /* CsoundMomentaryButtonBinding.m in Sources */,
C486A13D198BA8DB00E19281 /* CsoundGyroscopeBinding.m in Sources */,
F6B6475B14D353A7005F786B /* CsoundHaiku4ViewController.m in Sources */,
F6B6475F14D353A7005F786B /* HardwareTestViewController.m in Sources */,
F6B6476214D353A7005F786B /* HarmonizerTest.m in Sources */,
F6B6476614D353A7005F786B /* CsoundVirtualKeyboard.m in Sources */,
C41F0A9E197361C400997479 /* ControlXYGrid.m in Sources */,
C486A141198BA8DB00E19281 /* CsoundSwitchBinding.m in Sources */,
F6B6476814D353A7005F786B /* MidiTestViewController.m in Sources */,
F6B6476C14D353A7005F786B /* MultiTouchXYViewController.m in Sources */,
C486A148198BF32E00E19281 /* CsoundLabelBinding.m in Sources */,
C486A13E198BA8DB00E19281 /* CsoundMotion.m in Sources */,
F6B6476E14D353A7005F786B /* PitchShifterViewController.m in Sources */,
F6B6477014D353A7005F786B /* RecordTestViewController.m in Sources */,
F6B6477214D353A7005F786B /* SimpleTest1ViewController.m in Sources */,
C486A13F198BA8DB00E19281 /* CsoundButtonBinding.m in Sources */,
C486A13C198BA8DB00E19281 /* CsoundAttitudeBinding.m in Sources */,
F6B6477514D353A7005F786B /* SimpleTest2ViewController.m in Sources */,
F6B6477814D353A7005F786B /* Waveview.m in Sources */,
C486A142198BA8DB00E19281 /* CsoundUI.m in Sources */,
C41F0AA1197361D200997479 /* ControlKnob.m in Sources */,
F6B6477A14D353A7005F786B /* WaveviewViewController.m in Sources */,
C41F0A9A1973612A00997479 /* ConsoleOutputViewController.m in Sources */,
F6B647BA14D353D2005F786B /* CsoundObj.m in Sources */,
F6B647BB14D353D2005F786B /* CsoundMIDI.m in Sources */,
F6B647BC14D353D2005F786B /* MidiWidgetsManager.m in Sources */,
C46B769019B5C0A1000D4F95 /* InstrumentEditorViewController.m in Sources */,
F6B647BD14D353D2005F786B /* SliderMidiWidgetWrapper.m in Sources */,
F6968A5716B07BA00089C462 /* TrappedGeneratorViewController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
F6B6467514D348E5005F786B /* MasterViewController_iPhone.xib */ = {
isa = PBXVariantGroup;
children = (
57F227EA270C49DF003E71F1 /* Base */,
);
name = MasterViewController_iPhone.xib;
sourceTree = "<group>";
};
F6B6467814D348E5005F786B /* MasterViewController_iPad.xib */ = {
isa = PBXVariantGroup;
children = (
57F227EB270C4A04003E71F1 /* Base */,
);
name = MasterViewController_iPad.xib;
sourceTree = "<group>";
};
F6B6467B14D348E5005F786B /* DetailViewController_iPhone.xib */ = {
isa = PBXVariantGroup;
children = (
57F227EC270C4A34003E71F1 /* Base */,
);
name = DetailViewController_iPhone.xib;
sourceTree = "<group>";
};
F6B6467E14D348E5005F786B /* DetailViewController_iPad.xib */ = {
isa = PBXVariantGroup;
children = (
57F227ED270C4A53003E71F1 /* Base */,
);
name = DetailViewController_iPad.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
F6B6468114D348E5005F786B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COMPRESS_PNG_FILES = YES;
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
ONLY_ACTIVE_ARCH = YES;
PROVISIONING_PROFILE = "";
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
F6B6468214D348E5005F786B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COMPRESS_PNG_FILES = YES;
COPY_PHASE_STRIP = YES;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
PROVISIONING_PROFILE = "";
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
F6B6468414D348E5005F786B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = JXB7KNW747;
ENABLE_BITCODE = NO;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
INFOPLIST_FILE = "$(SRCROOT)/Csound iOS Examples/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/csound-iOS/libs",
);
PRODUCT_BUNDLE_IDENTIFIER = com.csounds.CsoundiOSExamplesNew;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
F6B6468514D348E5005F786B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = JXB7KNW747;
ENABLE_BITCODE = NO;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
INFOPLIST_FILE = "$(SRCROOT)/Csound iOS Examples/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/csound-iOS/libs",
);
PRODUCT_BUNDLE_IDENTIFIER = com.csounds.CsoundiOSExamplesNew;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
F6B6465314D348E4005F786B /* Build configuration list for PBXProject "Csound iOS Examples" */ = {
isa = XCConfigurationList;
buildConfigurations = (
F6B6468114D348E5005F786B /* Debug */,
F6B6468214D348E5005F786B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
F6B6468314D348E5005F786B /* Build configuration list for PBXNativeTarget "Csound iOS Examples" */ = {
isa = XCConfigurationList;
buildConfigurations = (
F6B6468414D348E5005F786B /* Debug */,
F6B6468514D348E5005F786B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = F6B6465014D348E4005F786B /* Project object */;
}
|