Changes between Version 1 and Version 2 of MacOSXBuild


Ignore:
Timestamp:
May 14, 2007, 10:11:34 AM (17 years ago)
Author:
mlucas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MacOSXBuild

    v1 v2  
    66The 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]]:
    77
    8 ==Development ==
     8== Development ==
    99
    1010=== Dependencies ===
     
    1313unpack and place in /Users/Shared/Development
    1414run ranlib on all of the static libraries there.
    15 
     15{{{
    1616 cd /Users/Shared/Development/ossim_dependencies/lib
    1717 ranlib *.a
    1818 cd ../nuiSDK/lib
    1919 ranlib *.a
    20 
     20}}}
    2121=== svn checkout summary ===
    2222
     
    3434
    3535xcode assumes that all modules are located side by side in:
    36 
     36{{{
    3737 /Users/Shared/Development/ossim
     38}}}
    3839
    3940== Building and Running in Xcode ==
    4041
    4142The 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{{{
    4344   /Users/Shared/Development/ossim/xcode/ossim/ossim.xcodeproj
    44 
     45}}}
    4546Loading 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.
    4647