Changes between Version 1 and Version 2 of MacOSXBuild
- Timestamp:
- 05/14/07 10:11:34 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MacOSXBuild
v1 v2 6 6 The easiest way to get up and running is to install the latest binary installer. During initial development, a fairly recent version of the software will be available at http://ossim.telascience.org/ossimdata/MacOSX/ . Look for and download the dmg file which will should mount after download. (e.g. ossim_1.6.6rc20.pkg.dmg ) Double click the package installer and the libararies and frameworks will be installed in [[standard locations]]: 7 7 8 == Development ==8 == Development == 9 9 10 10 === Dependencies === … … 13 13 unpack and place in /Users/Shared/Development 14 14 run ranlib on all of the static libraries there. 15 15 {{{ 16 16 cd /Users/Shared/Development/ossim_dependencies/lib 17 17 ranlib *.a 18 18 cd ../nuiSDK/lib 19 19 ranlib *.a 20 20 }}} 21 21 === svn checkout summary === 22 22 … … 34 34 35 35 xcode assumes that all modules are located side by side in: 36 36 {{{ 37 37 /Users/Shared/Development/ossim 38 }}} 38 39 39 40 == Building and Running in Xcode == 40 41 41 42 The MacOSX build is performed with xcode. It assumes that all of the svn subtrees have been checked out per the svn instructions and are sitting side by side in your development directory. Navigate into the ossim subdirectory and load the xcode project 42 43 {{{ 43 44 /Users/Shared/Development/ossim/xcode/ossim/ossim.xcodeproj 44 45 }}} 45 46 Loading this project into xcode will reveal Targets and subtargets that will build all of the ossim related frameworks and apps. It assumes ossim_dependencies has been downloaded and placed in /Users/Shared/Development. 46 47