Changeset 386 for AE/Installer/trunk/projects
- Timestamp:
- Jul 6, 2009, 3:59:57 AM (15 years ago)
- Location:
- AE/Installer/trunk/projects
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/projects/README-Mac.txt
r345 r386 3 3 by Iritscen (iritscen@oni2.net) 4 4 5 Requirements: An Intel Macintosh computer, preferably with Mac OS X 10.5 or higher, and an administrator password. 5 Requirements: An Intel Macintosh computer, preferably with Mac OS X 10.5 or higher, and an administrator password. Mono must be installed to run the built product. 6 6 7 7 Note: At the moment, the project is still in flux. I am planning to eventually set up the project to build a Universal application, not an Intel-only one. However, such a project may still require an Intel Mac to build the Installer. … … 14 14 B. Download and build Boost. 15 15 Go to http://www.boost.org/users/download/. First, click the link for the latest Boost library release. When it takes you to a page offering the download in different formats, choose the .tar.bz2 version. Next, back up and look for the last version of Boost Jam. Download the version for the Mac. Place the "bjam" binary in /usr/local/bin/. 16 Navigate in the Terminal to the directory with the Boost source and issue these commands: 17 sudo ./configure --with-bjam=/usr/local/bin/bjam 18 sudo make install 19 When all is done, look in /usr/local/lib/ for files beginning with "libboost". If present, your build was successful. 16 Navigate in the Terminal to the directory with the Boost source and issue these commands with the appropriate text in place of the text in brackets: 17 1. mkdir build-dynamic-universal 18 2. ./bootstrap.sh --prefix=build-dynamic-universal 19 3. ./bjam --libdir=[full path to build-dynamic-universal] --includedir=[full path to build-dynamic-universal] toolset=darwin variant=release link=shared threading=multi architecture=combined address-model=32 macosx-version=10.5 macosx-version-min=10.3 20 When all is done, look in the build-dynamic-universal/ folder in the Boost folder for files beginning with "libboost". If present, your build was successful. 20 21 21 22 C. Download and build wxWidgets. 22 23 Go to http://www.wxwidgets.org/downloads/. Look for a link for wxMac and download the file. Extract it and navigate in the Terminal to the base directory. Issue these commands: 23 mkdir osx-build 24 cd osx-build 25 ../configure --with-opengl --disable-shared 26 sudo make 27 sudo make install 28 After all above commands have finished, check in /usr/local/lib/ for files that start with "libwx_mac" to ensure the build was successful. 24 1. mkdir build-dynamic-universal 25 2. cd build-dynamic-universal 26 3. ../configure --with-opengl --enable-universal_binary --with-macosx-version-min=10.3.9 --with-macosx-sdk=/Developer/SDKs/MacOSX10.4u.sdk --with-libjpeg=builtin --with-libpng=builtin --with-regex=builtin --with-libtiff=builtin --with-zlib=builtin --with-expat=builtin 27 4. sudo make 28 After all above commands have finished, check in build-dynamic-universal/lib/ for files that start with "libwx_mac" to ensure the build was successful. 29 30 D. Download and build libiconv. 31 The libiconv project is at http://www.gnu.org/software/libiconv/. From the expanded folder's directory, use the commands: 32 1. mkdir build-static-universal 33 2. ./configure --enable-static --prefix=/Users/mloudon/Programming/Third-Party/Development/libiconv-1.13/build-static-universal CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" CPP="gcc -E" CXXCPP="g++ -E" 34 3. sudo make 35 4. make install 29 36 30 37 2. Downloading the project and source. 31 38 Go to http://websvn.chrilly.net/listing.php?repname=Oni2&path=%2FAE%2F. Click the Tarball button on the same line as the Installer directory. The server will prepare the tarball, and then the download will begin. You will receive a .tar.gz file. Double-click it to automatically unzip and extract the files. 32 Note that the source is in Installer/trunk/ , while the Xcode project file is in Installer/trunk/projects/xcode/AE_Installer-GUI/. When you move the extracted files to the place you wish to keep them, you must preserve the relative hierarchy that lies between the source and the project file. The project file expects to find the source files in ../../../source/, so do not move the source files anywhere other than three levels up from the project file in a folder called 'source'.39 Note that the source is in Installer/trunk/source/, while the Xcode project file is in Installer/trunk/projects/xcode/AE_Installer-GUI/. When you move the extracted files to the place you wish to keep them, you must preserve the relative hierarchy that lies between the source and the project file -- "../../../source/", in the project's settings. 33 40 34 41 3. Building the Installer. 35 If you are able to use the included .xcodeproj file, then you should immediately be able to build the Installer as soon as you open the project file. If there is difficulty, make sure that there are wxWidgets and Boost libraries in /usr/local/lib/ and that the project is in Release mode. If you are still stumped, contact me for help.36 Once built, "AE Installer.app" must be moved to the edition/install/ folder inside your Oni installation, alongside the packages/ folder, in order to work.42 If you are able to use the included .xcodeproj file, then you will need to change the directory in which the build takes place. Get info on the project and change the settings "Per-configuration Build Products Path" and "Installation Directory" to point to the folders of your choosing. 43 Once built, Installer.app must be moved to the edition/install/ folder inside your Oni installation, alongside the packages/ folder and OniSplit.exe, in order to work. -
AE/Installer/trunk/projects/xcode/AE_Installer-GUI/AE Installer (GUI).xcodeproj/project.pbxproj
r334 r386 9 9 /* Begin PBXBuildFile section */ 10 10 1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58140DA1D0A300B32029 /* MainMenu.xib */; }; 11 3057E8FB0FFC054B00299C97 /* libwx_base_carbon_net-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F00FFC054B00299C97 /* libwx_base_carbon_net-2.8.0.6.0.dylib */; }; 12 3057E8FC0FFC054B00299C97 /* libwx_base_carbon_xml-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F10FFC054B00299C97 /* libwx_base_carbon_xml-2.8.0.6.0.dylib */; }; 13 3057E8FD0FFC054B00299C97 /* libwx_mac_adv-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F20FFC054B00299C97 /* libwx_mac_adv-2.8.0.6.0.dylib */; }; 14 3057E8FE0FFC054B00299C97 /* libwx_mac_aui-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F30FFC054B00299C97 /* libwx_mac_aui-2.8.0.6.0.dylib */; }; 15 3057E8FF0FFC054B00299C97 /* libwx_mac_core-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F40FFC054B00299C97 /* libwx_mac_core-2.8.0.6.0.dylib */; }; 16 3057E9000FFC054B00299C97 /* libwx_mac_gl-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F50FFC054B00299C97 /* libwx_mac_gl-2.8.0.6.0.dylib */; }; 17 3057E9010FFC054B00299C97 /* libwx_mac_html-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F60FFC054B00299C97 /* libwx_mac_html-2.8.0.6.0.dylib */; }; 18 3057E9020FFC054B00299C97 /* libwx_mac_qa-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F70FFC054B00299C97 /* libwx_mac_qa-2.8.0.6.0.dylib */; }; 19 3057E9030FFC054B00299C97 /* libwx_mac_richtext-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F80FFC054B00299C97 /* libwx_mac_richtext-2.8.0.6.0.dylib */; }; 20 3057E9040FFC054B00299C97 /* libwx_mac_xrc-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8F90FFC054B00299C97 /* libwx_mac_xrc-2.8.0.6.0.dylib */; }; 21 3057E90B0FFC065500299C97 /* libwxexpat-2.8.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E9050FFC065500299C97 /* libwxexpat-2.8.a */; }; 22 3057E90C0FFC065500299C97 /* libwxjpeg-2.8.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E9060FFC065500299C97 /* libwxjpeg-2.8.a */; }; 23 3057E90D0FFC065500299C97 /* libwxpng-2.8.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E9070FFC065500299C97 /* libwxpng-2.8.a */; }; 24 3057E90E0FFC065500299C97 /* libwxregex-2.8.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E9080FFC065500299C97 /* libwxregex-2.8.a */; }; 25 3057E90F0FFC065500299C97 /* libwxtiff-2.8.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E9090FFC065500299C97 /* libwxtiff-2.8.a */; }; 26 3057E9100FFC065500299C97 /* libwxzlib-2.8.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E90A0FFC065500299C97 /* libwxzlib-2.8.a */; }; 27 3057E9110FFC068000299C97 /* libwx_base_carbon-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E8EF0FFC054B00299C97 /* libwx_base_carbon-2.8.0.6.0.dylib */; }; 28 3057E9580FFC505800299C97 /* libboost_date_time-xgcc40-mt-1_39.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E9300FFC502600299C97 /* libboost_date_time-xgcc40-mt-1_39.dylib */; }; 29 3057E9590FFC505800299C97 /* libboost_filesystem-xgcc40-mt-1_39.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E9310FFC502600299C97 /* libboost_filesystem-xgcc40-mt-1_39.dylib */; }; 30 3057E95A0FFC505800299C97 /* libboost_system-xgcc40-mt-1_39.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3057E93E0FFC502600299C97 /* libboost_system-xgcc40-mt-1_39.dylib */; }; 31 3057EA2310017F9D00299C97 /* AE Button.icns in Resources */ = {isa = PBXBuildFile; fileRef = 3057EA2210017F9D00299C97 /* AE Button.icns */; }; 11 32 306C16710FD1EA10009C7CA3 /* about_window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 306C16630FD1EA10009C7CA3 /* about_window.cpp */; }; 12 33 306C16720FD1EA10009C7CA3 /* app_resources.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 306C16650FD1EA10009C7CA3 /* app_resources.cpp */; }; 13 34 306C16730FD1EA10009C7CA3 /* fileopen.xpm in Resources */ = {isa = PBXBuildFile; fileRef = 306C16670FD1EA10009C7CA3 /* fileopen.xpm */; }; 14 35 306C16740FD1EA10009C7CA3 /* filesaveas.xpm in Resources */ = {isa = PBXBuildFile; fileRef = 306C16680FD1EA10009C7CA3 /* filesaveas.xpm */; }; 15 306C16760FD1EA10009C7CA3 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 306C166B0FD1EA10009C7CA3 /* main.cpp */; };16 36 306C16770FD1EA10009C7CA3 /* main_window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 306C166D0FD1EA10009C7CA3 /* main_window.cpp */; }; 17 37 306C16780FD1EA10009C7CA3 /* quit.xpm in Resources */ = {isa = PBXBuildFile; fileRef = 306C166F0FD1EA10009C7CA3 /* quit.xpm */; }; 18 38 306C16790FD1EA10009C7CA3 /* redo.xpm in Resources */ = {isa = PBXBuildFile; fileRef = 306C16700FD1EA10009C7CA3 /* redo.xpm */; }; 19 306C168A0FD1EC03009C7CA3 /* libboost_date_time-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16820FD1EC03009C7CA3 /* libboost_date_time-xgcc40-mt-1_38.dylib */; }; 20 306C168B0FD1EC03009C7CA3 /* libboost_filesystem-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16830FD1EC03009C7CA3 /* libboost_filesystem-xgcc40-mt-1_38.dylib */; }; 21 306C168C0FD1EC03009C7CA3 /* libboost_iostreams-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16840FD1EC03009C7CA3 /* libboost_iostreams-xgcc40-mt-1_38.dylib */; }; 22 306C168D0FD1EC03009C7CA3 /* libboost_math_c99-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16850FD1EC03009C7CA3 /* libboost_math_c99-xgcc40-mt-1_38.dylib */; }; 23 306C168E0FD1EC03009C7CA3 /* libboost_math_c99f-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16860FD1EC03009C7CA3 /* libboost_math_c99f-xgcc40-mt-1_38.dylib */; }; 24 306C168F0FD1EC03009C7CA3 /* libboost_math_c99l-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16870FD1EC03009C7CA3 /* libboost_math_c99l-xgcc40-mt-1_38.dylib */; }; 25 306C16900FD1EC03009C7CA3 /* libboost_system-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16880FD1EC03009C7CA3 /* libboost_system-xgcc40-mt-1_38.dylib */; }; 26 306C16910FD1EC03009C7CA3 /* libboost_thread-xgcc40-mt-1_38.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16890FD1EC03009C7CA3 /* libboost_thread-xgcc40-mt-1_38.dylib */; }; 27 306C169C0FD1EC84009C7CA3 /* libwx_base_carbon-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16920FD1EC84009C7CA3 /* libwx_base_carbon-2.8.0.6.0.dylib */; }; 28 306C169D0FD1EC84009C7CA3 /* libwx_base_carbon_net-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16930FD1EC84009C7CA3 /* libwx_base_carbon_net-2.8.0.6.0.dylib */; }; 29 306C169E0FD1EC84009C7CA3 /* libwx_base_carbon_xml-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16940FD1EC84009C7CA3 /* libwx_base_carbon_xml-2.8.0.6.0.dylib */; }; 30 306C169F0FD1EC84009C7CA3 /* libwx_mac_adv-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16950FD1EC84009C7CA3 /* libwx_mac_adv-2.8.0.6.0.dylib */; }; 31 306C16A00FD1EC84009C7CA3 /* libwx_mac_aui-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16960FD1EC84009C7CA3 /* libwx_mac_aui-2.8.0.6.0.dylib */; }; 32 306C16A10FD1EC84009C7CA3 /* libwx_mac_core-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16970FD1EC84009C7CA3 /* libwx_mac_core-2.8.0.6.0.dylib */; }; 33 306C16A20FD1EC84009C7CA3 /* libwx_mac_html-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16980FD1EC84009C7CA3 /* libwx_mac_html-2.8.0.6.0.dylib */; }; 34 306C16A30FD1EC84009C7CA3 /* libwx_mac_qa-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C16990FD1EC84009C7CA3 /* libwx_mac_qa-2.8.0.6.0.dylib */; }; 35 306C16A40FD1EC84009C7CA3 /* libwx_mac_richtext-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C169A0FD1EC84009C7CA3 /* libwx_mac_richtext-2.8.0.6.0.dylib */; }; 36 306C16A50FD1EC84009C7CA3 /* libwx_mac_xrc-2.8.0.6.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 306C169B0FD1EC84009C7CA3 /* libwx_mac_xrc-2.8.0.6.0.dylib */; }; 39 308C556E0FEC412F00225AAD /* aeinstallerapp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 308C556C0FEC412F00225AAD /* aeinstallerapp.cpp */; }; 40 30C26B550FE08F1A003C85EA /* oni_special.ico in Resources */ = {isa = PBXBuildFile; fileRef = 30C26B540FE08F1A003C85EA /* oni_special.ico */; }; 37 41 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; 38 42 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; … … 44 48 13E42FB307B3F0F600E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; }; 45 49 1DDD58150DA1D0A300B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; }; 46 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };47 50 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; }; 48 51 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; }; 49 306C16630FD1EA10009C7CA3 /* about_window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = about_window.cpp; path = ../../../source/about_window.cpp; sourceTree = SOURCE_ROOT; }; 50 306C16640FD1EA10009C7CA3 /* about_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = about_window.h; path = ../../../source/about_window.h; sourceTree = SOURCE_ROOT; }; 51 306C16650FD1EA10009C7CA3 /* app_resources.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = app_resources.cpp; path = ../../../source/app_resources.cpp; sourceTree = SOURCE_ROOT; }; 52 306C16660FD1EA10009C7CA3 /* app_resources.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = app_resources.h; path = ../../../source/app_resources.h; sourceTree = SOURCE_ROOT; }; 52 3057E8EF0FFC054B00299C97 /* libwx_base_carbon-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_base_carbon-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_base_carbon-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 53 3057E8F00FFC054B00299C97 /* libwx_base_carbon_net-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_base_carbon_net-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_base_carbon_net-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 54 3057E8F10FFC054B00299C97 /* libwx_base_carbon_xml-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_base_carbon_xml-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_base_carbon_xml-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 55 3057E8F20FFC054B00299C97 /* libwx_mac_adv-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_adv-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_adv-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 56 3057E8F30FFC054B00299C97 /* libwx_mac_aui-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_aui-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_aui-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 57 3057E8F40FFC054B00299C97 /* libwx_mac_core-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_core-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_core-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 58 3057E8F50FFC054B00299C97 /* libwx_mac_gl-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_gl-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_gl-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 59 3057E8F60FFC054B00299C97 /* libwx_mac_html-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_html-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_html-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 60 3057E8F70FFC054B00299C97 /* libwx_mac_qa-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_qa-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_qa-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 61 3057E8F80FFC054B00299C97 /* libwx_mac_richtext-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_richtext-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_richtext-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 62 3057E8F90FFC054B00299C97 /* libwx_mac_xrc-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_xrc-2.8.0.6.0.dylib"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwx_mac_xrc-2.8.0.6.0.dylib"; sourceTree = SOURCE_ROOT; }; 63 3057E9050FFC065500299C97 /* libwxexpat-2.8.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libwxexpat-2.8.a"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwxexpat-2.8.a"; sourceTree = SOURCE_ROOT; }; 64 3057E9060FFC065500299C97 /* libwxjpeg-2.8.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libwxjpeg-2.8.a"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwxjpeg-2.8.a"; sourceTree = SOURCE_ROOT; }; 65 3057E9070FFC065500299C97 /* libwxpng-2.8.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libwxpng-2.8.a"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwxpng-2.8.a"; sourceTree = SOURCE_ROOT; }; 66 3057E9080FFC065500299C97 /* libwxregex-2.8.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libwxregex-2.8.a"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwxregex-2.8.a"; sourceTree = SOURCE_ROOT; }; 67 3057E9090FFC065500299C97 /* libwxtiff-2.8.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libwxtiff-2.8.a"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwxtiff-2.8.a"; sourceTree = SOURCE_ROOT; }; 68 3057E90A0FFC065500299C97 /* libwxzlib-2.8.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libwxzlib-2.8.a"; path = "../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/libwxzlib-2.8.a"; sourceTree = SOURCE_ROOT; }; 69 3057E9300FFC502600299C97 /* libboost_date_time-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_date_time-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_date_time-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 70 3057E9310FFC502600299C97 /* libboost_filesystem-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_filesystem-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_filesystem-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 71 3057E9320FFC502600299C97 /* libboost_graph-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_graph-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_graph-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 72 3057E9330FFC502600299C97 /* libboost_iostreams-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_iostreams-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_iostreams-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 73 3057E9340FFC502600299C97 /* libboost_math_c99-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_math_c99-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_math_c99-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 74 3057E9350FFC502600299C97 /* libboost_math_c99f-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_math_c99f-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_math_c99f-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 75 3057E9360FFC502600299C97 /* libboost_math_tr1-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_math_tr1-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_math_tr1-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 76 3057E9370FFC502600299C97 /* libboost_math_tr1f-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_math_tr1f-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_math_tr1f-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 77 3057E9380FFC502600299C97 /* libboost_prg_exec_monitor-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_prg_exec_monitor-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_prg_exec_monitor-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 78 3057E9390FFC502600299C97 /* libboost_program_options-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_program_options-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_program_options-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 79 3057E93A0FFC502600299C97 /* libboost_python-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_python-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_python-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 80 3057E93B0FFC502600299C97 /* libboost_regex-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_regex-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_regex-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 81 3057E93C0FFC502600299C97 /* libboost_serialization-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_serialization-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_serialization-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 82 3057E93D0FFC502600299C97 /* libboost_signals-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_signals-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_signals-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 83 3057E93E0FFC502600299C97 /* libboost_system-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_system-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_system-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 84 3057E93F0FFC502600299C97 /* libboost_test_exec_monitor-xgcc40-mt-1_39.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libboost_test_exec_monitor-xgcc40-mt-1_39.a"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_test_exec_monitor-xgcc40-mt-1_39.a"; sourceTree = SOURCE_ROOT; }; 85 3057E9400FFC502600299C97 /* libboost_thread-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_thread-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_thread-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 86 3057E9410FFC502600299C97 /* libboost_unit_test_framework-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_unit_test_framework-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_unit_test_framework-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 87 3057E9420FFC502600299C97 /* libboost_wave-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_wave-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_wave-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 88 3057E9430FFC502600299C97 /* libboost_wserialization-xgcc40-mt-1_39.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_wserialization-xgcc40-mt-1_39.dylib"; path = "../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal/libboost_wserialization-xgcc40-mt-1_39.dylib"; sourceTree = SOURCE_ROOT; }; 89 3057EA2210017F9D00299C97 /* AE Button.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = "AE Button.icns"; sourceTree = "<group>"; }; 90 306C16630FD1EA10009C7CA3 /* about_window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 2; name = about_window.cpp; path = ../../../source/about_window.cpp; sourceTree = SOURCE_ROOT; }; 91 306C16640FD1EA10009C7CA3 /* about_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = about_window.h; path = ../../../source/about_window.h; sourceTree = SOURCE_ROOT; }; 92 306C16650FD1EA10009C7CA3 /* app_resources.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 2; name = app_resources.cpp; path = ../../../source/app_resources.cpp; sourceTree = SOURCE_ROOT; }; 93 306C16660FD1EA10009C7CA3 /* app_resources.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = app_resources.h; path = ../../../source/app_resources.h; sourceTree = SOURCE_ROOT; }; 53 94 306C16670FD1EA10009C7CA3 /* fileopen.xpm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fileopen.xpm; path = ../../../source/fileopen.xpm; sourceTree = SOURCE_ROOT; }; 54 95 306C16680FD1EA10009C7CA3 /* filesaveas.xpm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = filesaveas.xpm; path = ../../../source/filesaveas.xpm; sourceTree = SOURCE_ROOT; }; 55 306C16690FD1EA10009C7CA3 /* installer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = installer.cpp; path = ../../../source/installer.cpp; sourceTree = SOURCE_ROOT; };56 306C166A0FD1EA10009C7CA3 /* installer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = installer.h; path = ../../../source/installer.h; sourceTree = SOURCE_ROOT; };57 306C166B0FD1EA10009C7CA3 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = ../../../source/main.cpp; sourceTree = SOURCE_ROOT; };58 306C166C0FD1EA10009C7CA3 /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = main.h; path = ../../../source/main.h; sourceTree = SOURCE_ROOT; };96 306C16690FD1EA10009C7CA3 /* installer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 2; name = installer.cpp; path = ../../../source/installer.cpp; sourceTree = SOURCE_ROOT; }; 97 306C166A0FD1EA10009C7CA3 /* installer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = installer.h; path = ../../../source/installer.h; sourceTree = SOURCE_ROOT; }; 98 306C166B0FD1EA10009C7CA3 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 2; name = main.cpp; path = ../../../source/main.cpp; sourceTree = SOURCE_ROOT; }; 99 306C166C0FD1EA10009C7CA3 /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = main.h; path = ../../../source/main.h; sourceTree = SOURCE_ROOT; }; 59 100 306C166D0FD1EA10009C7CA3 /* main_window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 2; name = main_window.cpp; path = ../../../source/main_window.cpp; sourceTree = SOURCE_ROOT; }; 60 306C166E0FD1EA10009C7CA3 /* main_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = main_window.h; path = ../../../source/main_window.h; sourceTree = SOURCE_ROOT; };101 306C166E0FD1EA10009C7CA3 /* main_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = main_window.h; path = ../../../source/main_window.h; sourceTree = SOURCE_ROOT; }; 61 102 306C166F0FD1EA10009C7CA3 /* quit.xpm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = quit.xpm; path = ../../../source/quit.xpm; sourceTree = SOURCE_ROOT; }; 62 103 306C16700FD1EA10009C7CA3 /* redo.xpm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = redo.xpm; path = ../../../source/redo.xpm; sourceTree = SOURCE_ROOT; }; 63 306C16820FD1EC03009C7CA3 /* libboost_date_time-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_date_time-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_date_time-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 64 306C16830FD1EC03009C7CA3 /* libboost_filesystem-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_filesystem-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_filesystem-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 65 306C16840FD1EC03009C7CA3 /* libboost_iostreams-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_iostreams-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_iostreams-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 66 306C16850FD1EC03009C7CA3 /* libboost_math_c99-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_math_c99-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_math_c99-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 67 306C16860FD1EC03009C7CA3 /* libboost_math_c99f-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_math_c99f-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_math_c99f-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 68 306C16870FD1EC03009C7CA3 /* libboost_math_c99l-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_math_c99l-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_math_c99l-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 69 306C16880FD1EC03009C7CA3 /* libboost_system-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_system-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_system-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 70 306C16890FD1EC03009C7CA3 /* libboost_thread-xgcc40-mt-1_38.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libboost_thread-xgcc40-mt-1_38.dylib"; path = "/usr/local/lib/libboost_thread-xgcc40-mt-1_38.dylib"; sourceTree = "<absolute>"; }; 71 306C16920FD1EC84009C7CA3 /* libwx_base_carbon-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_base_carbon-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_base_carbon-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 72 306C16930FD1EC84009C7CA3 /* libwx_base_carbon_net-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_base_carbon_net-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_base_carbon_net-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 73 306C16940FD1EC84009C7CA3 /* libwx_base_carbon_xml-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_base_carbon_xml-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_base_carbon_xml-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 74 306C16950FD1EC84009C7CA3 /* libwx_mac_adv-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_adv-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_mac_adv-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 75 306C16960FD1EC84009C7CA3 /* libwx_mac_aui-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_aui-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_mac_aui-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 76 306C16970FD1EC84009C7CA3 /* libwx_mac_core-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_core-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_mac_core-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 77 306C16980FD1EC84009C7CA3 /* libwx_mac_html-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_html-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_mac_html-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 78 306C16990FD1EC84009C7CA3 /* libwx_mac_qa-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_qa-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_mac_qa-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 79 306C169A0FD1EC84009C7CA3 /* libwx_mac_richtext-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_richtext-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_mac_richtext-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 80 306C169B0FD1EC84009C7CA3 /* libwx_mac_xrc-2.8.0.6.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libwx_mac_xrc-2.8.0.6.0.dylib"; path = "/usr/local/lib/libwx_mac_xrc-2.8.0.6.0.dylib"; sourceTree = "<absolute>"; }; 104 308C556C0FEC412F00225AAD /* aeinstallerapp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 2; name = aeinstallerapp.cpp; path = ../../../source/aeinstallerapp.cpp; sourceTree = SOURCE_ROOT; }; 105 308C556D0FEC412F00225AAD /* aeinstallerapp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = aeinstallerapp.h; path = ../../../source/aeinstallerapp.h; sourceTree = SOURCE_ROOT; }; 106 30C26B540FE08F1A003C85EA /* oni_special.ico */ = {isa = PBXFileReference; lastKnownFileType = image.ico; name = oni_special.ico; path = ../../../source/oni_special.ico; sourceTree = SOURCE_ROOT; }; 81 107 32CA4F630368D1EE00C91783 /* AE Installer (GUI)_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AE Installer (GUI)_Prefix.pch"; sourceTree = "<group>"; }; 82 108 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; 83 8D1107320486CEB800E47090 /* AE Installer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "AE Installer.app"; sourceTree = BUILT_PRODUCTS_DIR; };109 8D1107320486CEB800E47090 /* Installer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Installer.app; sourceTree = BUILT_PRODUCTS_DIR; }; 84 110 /* End PBXFileReference section */ 85 111 … … 89 115 buildActionMask = 2147483647; 90 116 files = ( 117 3057E9580FFC505800299C97 /* libboost_date_time-xgcc40-mt-1_39.dylib in Frameworks */, 118 3057E9590FFC505800299C97 /* libboost_filesystem-xgcc40-mt-1_39.dylib in Frameworks */, 119 3057E95A0FFC505800299C97 /* libboost_system-xgcc40-mt-1_39.dylib in Frameworks */, 91 120 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, 92 306C168A0FD1EC03009C7CA3 /* libboost_date_time-xgcc40-mt-1_38.dylib in Frameworks */, 93 306C168B0FD1EC03009C7CA3 /* libboost_filesystem-xgcc40-mt-1_38.dylib in Frameworks */, 94 306C168C0FD1EC03009C7CA3 /* libboost_iostreams-xgcc40-mt-1_38.dylib in Frameworks */, 95 306C168D0FD1EC03009C7CA3 /* libboost_math_c99-xgcc40-mt-1_38.dylib in Frameworks */, 96 306C168E0FD1EC03009C7CA3 /* libboost_math_c99f-xgcc40-mt-1_38.dylib in Frameworks */, 97 306C168F0FD1EC03009C7CA3 /* libboost_math_c99l-xgcc40-mt-1_38.dylib in Frameworks */, 98 306C16900FD1EC03009C7CA3 /* libboost_system-xgcc40-mt-1_38.dylib in Frameworks */, 99 306C16910FD1EC03009C7CA3 /* libboost_thread-xgcc40-mt-1_38.dylib in Frameworks */, 100 306C169C0FD1EC84009C7CA3 /* libwx_base_carbon-2.8.0.6.0.dylib in Frameworks */, 101 306C169D0FD1EC84009C7CA3 /* libwx_base_carbon_net-2.8.0.6.0.dylib in Frameworks */, 102 306C169E0FD1EC84009C7CA3 /* libwx_base_carbon_xml-2.8.0.6.0.dylib in Frameworks */, 103 306C169F0FD1EC84009C7CA3 /* libwx_mac_adv-2.8.0.6.0.dylib in Frameworks */, 104 306C16A00FD1EC84009C7CA3 /* libwx_mac_aui-2.8.0.6.0.dylib in Frameworks */, 105 306C16A10FD1EC84009C7CA3 /* libwx_mac_core-2.8.0.6.0.dylib in Frameworks */, 106 306C16A20FD1EC84009C7CA3 /* libwx_mac_html-2.8.0.6.0.dylib in Frameworks */, 107 306C16A30FD1EC84009C7CA3 /* libwx_mac_qa-2.8.0.6.0.dylib in Frameworks */, 108 306C16A40FD1EC84009C7CA3 /* libwx_mac_richtext-2.8.0.6.0.dylib in Frameworks */, 109 306C16A50FD1EC84009C7CA3 /* libwx_mac_xrc-2.8.0.6.0.dylib in Frameworks */, 121 3057E8FB0FFC054B00299C97 /* libwx_base_carbon_net-2.8.0.6.0.dylib in Frameworks */, 122 3057E8FC0FFC054B00299C97 /* libwx_base_carbon_xml-2.8.0.6.0.dylib in Frameworks */, 123 3057E8FD0FFC054B00299C97 /* libwx_mac_adv-2.8.0.6.0.dylib in Frameworks */, 124 3057E8FE0FFC054B00299C97 /* libwx_mac_aui-2.8.0.6.0.dylib in Frameworks */, 125 3057E8FF0FFC054B00299C97 /* libwx_mac_core-2.8.0.6.0.dylib in Frameworks */, 126 3057E9000FFC054B00299C97 /* libwx_mac_gl-2.8.0.6.0.dylib in Frameworks */, 127 3057E9010FFC054B00299C97 /* libwx_mac_html-2.8.0.6.0.dylib in Frameworks */, 128 3057E9020FFC054B00299C97 /* libwx_mac_qa-2.8.0.6.0.dylib in Frameworks */, 129 3057E9030FFC054B00299C97 /* libwx_mac_richtext-2.8.0.6.0.dylib in Frameworks */, 130 3057E9040FFC054B00299C97 /* libwx_mac_xrc-2.8.0.6.0.dylib in Frameworks */, 131 3057E90B0FFC065500299C97 /* libwxexpat-2.8.a in Frameworks */, 132 3057E90C0FFC065500299C97 /* libwxjpeg-2.8.a in Frameworks */, 133 3057E90D0FFC065500299C97 /* libwxpng-2.8.a in Frameworks */, 134 3057E90E0FFC065500299C97 /* libwxregex-2.8.a in Frameworks */, 135 3057E90F0FFC065500299C97 /* libwxtiff-2.8.a in Frameworks */, 136 3057E9100FFC065500299C97 /* libwxzlib-2.8.a in Frameworks */, 137 3057E9110FFC068000299C97 /* libwx_base_carbon-2.8.0.6.0.dylib in Frameworks */, 110 138 ); 111 139 runOnlyForDeploymentPostprocessing = 0; … … 135 163 isa = PBXGroup; 136 164 children = ( 137 8D1107320486CEB800E47090 /* AEInstaller.app */,165 8D1107320486CEB800E47090 /* Installer.app */, 138 166 ); 139 167 name = Products; … … 154 182 isa = PBXGroup; 155 183 children = ( 184 308C556C0FEC412F00225AAD /* aeinstallerapp.cpp */, 185 308C556D0FEC412F00225AAD /* aeinstallerapp.h */, 156 186 306C16630FD1EA10009C7CA3 /* about_window.cpp */, 157 187 306C16640FD1EA10009C7CA3 /* about_window.h */, 158 188 306C16650FD1EA10009C7CA3 /* app_resources.cpp */, 159 189 306C16660FD1EA10009C7CA3 /* app_resources.h */, 160 306C16670FD1EA10009C7CA3 /* fileopen.xpm */,161 306C16680FD1EA10009C7CA3 /* filesaveas.xpm */,162 190 306C16690FD1EA10009C7CA3 /* installer.cpp */, 163 191 306C166A0FD1EA10009C7CA3 /* installer.h */, … … 166 194 306C166D0FD1EA10009C7CA3 /* main_window.cpp */, 167 195 306C166E0FD1EA10009C7CA3 /* main_window.h */, 196 32CA4F630368D1EE00C91783 /* AE Installer (GUI)_Prefix.pch */, 197 ); 198 name = Sources; 199 sourceTree = "<group>"; 200 }; 201 29B97317FDCFA39411CA2CEA /* Resources */ = { 202 isa = PBXGroup; 203 children = ( 204 3057EA2210017F9D00299C97 /* AE Button.icns */, 205 30C26B540FE08F1A003C85EA /* oni_special.ico */, 206 306C16670FD1EA10009C7CA3 /* fileopen.xpm */, 207 306C16680FD1EA10009C7CA3 /* filesaveas.xpm */, 168 208 306C166F0FD1EA10009C7CA3 /* quit.xpm */, 169 209 306C16700FD1EA10009C7CA3 /* redo.xpm */, 170 32CA4F630368D1EE00C91783 /* AE Installer (GUI)_Prefix.pch */,171 29B97316FDCFA39411CA2CEA /* main.m */,172 );173 name = Sources;174 sourceTree = "<group>";175 };176 29B97317FDCFA39411CA2CEA /* Resources */ = {177 isa = PBXGroup;178 children = (179 210 8D1107310486CEB800E47090 /* Info.plist */, 180 211 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, … … 187 218 isa = PBXGroup; 188 219 children = ( 189 306C16920FD1EC84009C7CA3 /* libwx_base_carbon-2.8.0.6.0.dylib */, 190 306C16930FD1EC84009C7CA3 /* libwx_base_carbon_net-2.8.0.6.0.dylib */, 191 306C16940FD1EC84009C7CA3 /* libwx_base_carbon_xml-2.8.0.6.0.dylib */, 192 306C16950FD1EC84009C7CA3 /* libwx_mac_adv-2.8.0.6.0.dylib */, 193 306C16960FD1EC84009C7CA3 /* libwx_mac_aui-2.8.0.6.0.dylib */, 194 306C16970FD1EC84009C7CA3 /* libwx_mac_core-2.8.0.6.0.dylib */, 195 306C16980FD1EC84009C7CA3 /* libwx_mac_html-2.8.0.6.0.dylib */, 196 306C16990FD1EC84009C7CA3 /* libwx_mac_qa-2.8.0.6.0.dylib */, 197 306C169A0FD1EC84009C7CA3 /* libwx_mac_richtext-2.8.0.6.0.dylib */, 198 306C169B0FD1EC84009C7CA3 /* libwx_mac_xrc-2.8.0.6.0.dylib */, 199 306C16820FD1EC03009C7CA3 /* libboost_date_time-xgcc40-mt-1_38.dylib */, 200 306C16830FD1EC03009C7CA3 /* libboost_filesystem-xgcc40-mt-1_38.dylib */, 201 306C16840FD1EC03009C7CA3 /* libboost_iostreams-xgcc40-mt-1_38.dylib */, 202 306C16850FD1EC03009C7CA3 /* libboost_math_c99-xgcc40-mt-1_38.dylib */, 203 306C16860FD1EC03009C7CA3 /* libboost_math_c99f-xgcc40-mt-1_38.dylib */, 204 306C16870FD1EC03009C7CA3 /* libboost_math_c99l-xgcc40-mt-1_38.dylib */, 205 306C16880FD1EC03009C7CA3 /* libboost_system-xgcc40-mt-1_38.dylib */, 206 306C16890FD1EC03009C7CA3 /* libboost_thread-xgcc40-mt-1_38.dylib */, 220 3057E9300FFC502600299C97 /* libboost_date_time-xgcc40-mt-1_39.dylib */, 221 3057E9310FFC502600299C97 /* libboost_filesystem-xgcc40-mt-1_39.dylib */, 222 3057E9320FFC502600299C97 /* libboost_graph-xgcc40-mt-1_39.dylib */, 223 3057E9330FFC502600299C97 /* libboost_iostreams-xgcc40-mt-1_39.dylib */, 224 3057E9340FFC502600299C97 /* libboost_math_c99-xgcc40-mt-1_39.dylib */, 225 3057E9350FFC502600299C97 /* libboost_math_c99f-xgcc40-mt-1_39.dylib */, 226 3057E9360FFC502600299C97 /* libboost_math_tr1-xgcc40-mt-1_39.dylib */, 227 3057E9370FFC502600299C97 /* libboost_math_tr1f-xgcc40-mt-1_39.dylib */, 228 3057E9380FFC502600299C97 /* libboost_prg_exec_monitor-xgcc40-mt-1_39.dylib */, 229 3057E9390FFC502600299C97 /* libboost_program_options-xgcc40-mt-1_39.dylib */, 230 3057E93A0FFC502600299C97 /* libboost_python-xgcc40-mt-1_39.dylib */, 231 3057E93B0FFC502600299C97 /* libboost_regex-xgcc40-mt-1_39.dylib */, 232 3057E93C0FFC502600299C97 /* libboost_serialization-xgcc40-mt-1_39.dylib */, 233 3057E93D0FFC502600299C97 /* libboost_signals-xgcc40-mt-1_39.dylib */, 234 3057E93E0FFC502600299C97 /* libboost_system-xgcc40-mt-1_39.dylib */, 235 3057E93F0FFC502600299C97 /* libboost_test_exec_monitor-xgcc40-mt-1_39.a */, 236 3057E9400FFC502600299C97 /* libboost_thread-xgcc40-mt-1_39.dylib */, 237 3057E9410FFC502600299C97 /* libboost_unit_test_framework-xgcc40-mt-1_39.dylib */, 238 3057E9420FFC502600299C97 /* libboost_wave-xgcc40-mt-1_39.dylib */, 239 3057E9430FFC502600299C97 /* libboost_wserialization-xgcc40-mt-1_39.dylib */, 240 3057E9050FFC065500299C97 /* libwxexpat-2.8.a */, 241 3057E9060FFC065500299C97 /* libwxjpeg-2.8.a */, 242 3057E9070FFC065500299C97 /* libwxpng-2.8.a */, 243 3057E9080FFC065500299C97 /* libwxregex-2.8.a */, 244 3057E9090FFC065500299C97 /* libwxtiff-2.8.a */, 245 3057E90A0FFC065500299C97 /* libwxzlib-2.8.a */, 246 3057E8EF0FFC054B00299C97 /* libwx_base_carbon-2.8.0.6.0.dylib */, 247 3057E8F00FFC054B00299C97 /* libwx_base_carbon_net-2.8.0.6.0.dylib */, 248 3057E8F10FFC054B00299C97 /* libwx_base_carbon_xml-2.8.0.6.0.dylib */, 249 3057E8F20FFC054B00299C97 /* libwx_mac_adv-2.8.0.6.0.dylib */, 250 3057E8F30FFC054B00299C97 /* libwx_mac_aui-2.8.0.6.0.dylib */, 251 3057E8F40FFC054B00299C97 /* libwx_mac_core-2.8.0.6.0.dylib */, 252 3057E8F50FFC054B00299C97 /* libwx_mac_gl-2.8.0.6.0.dylib */, 253 3057E8F60FFC054B00299C97 /* libwx_mac_html-2.8.0.6.0.dylib */, 254 3057E8F70FFC054B00299C97 /* libwx_mac_qa-2.8.0.6.0.dylib */, 255 3057E8F80FFC054B00299C97 /* libwx_mac_richtext-2.8.0.6.0.dylib */, 256 3057E8F90FFC054B00299C97 /* libwx_mac_xrc-2.8.0.6.0.dylib */, 207 257 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, 208 258 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, … … 214 264 215 265 /* Begin PBXNativeTarget section */ 216 8D1107260486CEB800E47090 /* AE Installer (GUI)*/ = {266 8D1107260486CEB800E47090 /* Installer */ = { 217 267 isa = PBXNativeTarget; 218 buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget " AE Installer (GUI)" */;268 buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Installer" */; 219 269 buildPhases = ( 220 270 8D1107290486CEB800E47090 /* Resources */, 221 271 8D11072C0486CEB800E47090 /* Sources */, 222 272 8D11072E0486CEB800E47090 /* Frameworks */, 273 3057EA0D10016B8900299C97 /* ShellScript */, 223 274 ); 224 275 buildRules = ( … … 226 277 dependencies = ( 227 278 ); 228 name = "AE Installer (GUI)";279 name = Installer; 229 280 productInstallPath = "$(HOME)/Applications"; 230 281 productName = "AE Installer (GUI)"; 231 productReference = 8D1107320486CEB800E47090 /* AEInstaller.app */;282 productReference = 8D1107320486CEB800E47090 /* Installer.app */; 232 283 productType = "com.apple.product-type.application"; 233 284 }; … … 244 295 projectRoot = ""; 245 296 targets = ( 246 8D1107260486CEB800E47090 /* AE Installer (GUI)*/,297 8D1107260486CEB800E47090 /* Installer */, 247 298 ); 248 299 }; … … 260 311 306C16780FD1EA10009C7CA3 /* quit.xpm in Resources */, 261 312 306C16790FD1EA10009C7CA3 /* redo.xpm in Resources */, 313 30C26B550FE08F1A003C85EA /* oni_special.ico in Resources */, 314 3057EA2310017F9D00299C97 /* AE Button.icns in Resources */, 262 315 ); 263 316 runOnlyForDeploymentPostprocessing = 0; 264 317 }; 265 318 /* End PBXResourcesBuildPhase section */ 319 320 /* Begin PBXShellScriptBuildPhase section */ 321 3057EA0D10016B8900299C97 /* ShellScript */ = { 322 isa = PBXShellScriptBuildPhase; 323 buildActionMask = 2147483647; 324 files = ( 325 ); 326 inputPaths = ( 327 ); 328 outputPaths = ( 329 ); 330 runOnlyForDeploymentPostprocessing = 0; 331 shellPath = /bin/bash; 332 shellScript = "/Users/mloudon/Programming/Pre-Release/AE_Installer/projects/xcode/AE_Installer-GUI/fix_dylibs.sh"; 333 }; 334 /* End PBXShellScriptBuildPhase section */ 266 335 267 336 /* Begin PBXSourcesBuildPhase section */ … … 272 341 306C16710FD1EA10009C7CA3 /* about_window.cpp in Sources */, 273 342 306C16720FD1EA10009C7CA3 /* app_resources.cpp in Sources */, 274 306C16760FD1EA10009C7CA3 /* main.cpp in Sources */,275 343 306C16770FD1EA10009C7CA3 /* main_window.cpp in Sources */, 344 308C556E0FEC412F00225AAD /* aeinstallerapp.cpp in Sources */, 276 345 ); 277 346 runOnlyForDeploymentPostprocessing = 0; … … 312 381 INFOPLIST_FILE = Info.plist; 313 382 INSTALL_PATH = "$(HOME)/Applications"; 383 LIBRARY_SEARCH_PATHS = ( 384 "$(inherited)", 385 "\"$(SRCROOT)/../../../../../Third-Party/Development/wxMac-2.8.10/release-static-universal/lib\"", 386 "\"$(SRCROOT)/../../../../../Third-Party/Development/wxMac-2.8.10/osx-build/lib\"", 387 "\"$(SRCROOT)/../../../../../Third-Party/Development/wxMac-2.8.10/build-static-universal/lib\"", 388 "\"$(SRCROOT)/../../../../../Third-Party/Development/boost_1_38_0/release-static-universal\"", 389 "\"$(SRCROOT)/../../../source\"", 390 "\"$(SRCROOT)/../../../../../Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib\"", 391 "\"$(SRCROOT)/../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal\"", 392 ); 314 393 PRODUCT_NAME = "AE Installer (GUI)"; 315 394 }; … … 320 399 buildSettings = { 321 400 ALWAYS_SEARCH_USER_PATHS = NO; 322 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 401 DEBUG_INFORMATION_FORMAT = dwarf; 402 GCC_INLINES_ARE_PRIVATE_EXTERN = NO; 323 403 GCC_MODEL_TUNING = G5; 324 404 GCC_PRECOMPILE_PREFIX_HEADER = YES; 325 405 GCC_PREFIX_HEADER = "AE Installer (GUI)_Prefix.pch"; 326 406 INFOPLIST_FILE = Info.plist; 327 INSTALL_PATH = "$(HOME)/Applications"; 328 PRODUCT_NAME = "AE Installer"; 407 INSTALL_PATH = "/Games/Oni-Test/edition/install"; 408 LIBRARY_SEARCH_PATHS = ( 409 "$(inherited)", 410 "\"$(SRCROOT)/../../../../../Third-Party/Development/boost_1_39_0/build-dynamic-universal\"", 411 ); 412 PRODUCT_NAME = Installer; 329 413 }; 330 414 name = Release; … … 347 431 isa = XCBuildConfiguration; 348 432 buildSettings = { 349 ARCHS = "$(NATIVE_ARCH)"; 433 ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 434 CONFIGURATION_BUILD_DIR = "/Games/Oni-Test/edition/install"; 435 DEPLOYMENT_LOCATION = YES; 436 DSTROOT = /; 350 437 GCC_C_LANGUAGE_STANDARD = c99; 438 GCC_OPTIMIZATION_LEVEL = 0; 439 GCC_SYMBOLS_PRIVATE_EXTERN = NO; 351 440 GCC_WARN_ABOUT_RETURN_TYPE = YES; 441 GCC_WARN_UNUSED_FUNCTION = YES; 352 442 GCC_WARN_UNUSED_VARIABLE = YES; 353 443 HEADER_SEARCH_PATHS = ( 354 "\"/ usr/local/lib/wx/include/mac-ansi-release-2.8\"",355 "\"/ usr/local/include/wx-2.8\"",356 "\"/ usr/local/include/boost-1_38\"",444 "\"/Users/mloudon/Programming/Third-Party/Development/wxMac-2.8.10/release-dynamic-universal/lib/wx/include/mac-ansi-release-2.8\"", 445 "\"/Users/mloudon/Programming/Third-Party/Development/wxMac-2.8.10/include\"", 446 "\"/Users/mloudon/Programming/Third-Party/Development/boost_1_39_0\"", 357 447 ); 448 INSTALL_PATH = "/Games/Oni-Test/edition/install"; 449 LD_RUNPATH_SEARCH_PATHS = ""; 450 MACH_O_TYPE = mh_execute; 451 MACOSX_DEPLOYMENT_TARGET = 10.3; 358 452 OTHER_CFLAGS = ( 359 "-I/usr/local/lib/wx/include/mac-ansi-release-2.8", 360 "-I/usr/local/include/wx-2.8", 453 "-I/Users/mloudon/Programming/Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib/wx/include/mac-ansi-release-2.8", 454 "-I/Users/mloudon/Programming/Third-Party/Development/wxMac-2.8.10/include", 455 "-I/Users/mloudon/Programming/Third-Party/Development/wxMac-2.8.10/contrib/include", 361 456 "-D_FILE_OFFSET_BITS=64", 362 457 "-D_LARGE_FILES", … … 364 459 ); 365 460 OTHER_LDFLAGS = ( 366 "-L/ usr/local/lib",461 "-L/Users/mloudon/Programming/Third-Party/Development/wxMac-2.8.10/build-dynamic-universal/lib", 367 462 "-framework", 368 463 IOKit, … … 389 484 "-lwx_base_carbon_net-2.8", 390 485 "-lwx_base_carbon-2.8", 486 "-headerpad_max_install_names", 391 487 ); 392 488 PREBINDING = NO; 489 PRODUCT_NAME = Installer; 393 490 SDKROOT = macosx10.5; 491 STANDARD_C_PLUS_PLUS_LIBRARY_TYPE = dynamic; 394 492 }; 395 493 name = Release; … … 398 496 399 497 /* Begin XCConfigurationList section */ 400 C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget " AE Installer (GUI)" */ = {498 C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Installer" */ = { 401 499 isa = XCConfigurationList; 402 500 buildConfigurations = (
Note:
See TracChangeset
for help on using the changeset viewer.