Changes between Version 30 and Version 31 of MacOSXBuild


Ignore:
Timestamp:
Dec 1, 2010, 10:42:30 AM (13 years ago)
Author:
mlucas17
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MacOSXBuild

    v30 v31  
    7373
    7474
    75 Install the Trolltech Qt Development package, the open source version of qt-mac-cocoa.dmg can be found
    76 in the ossim_dependencies folder.  Double click and install if necessary.
     756. Compiling the libraries (unix build)
     76
     77We have now started adding cmake script files for different platforms under:
     78{{{
     79 <OSSIM_DEV_HOME>/ossim_package_support/cmake/build_scripts
     80
     81}}}
     82We suggest making a copy of a build script that closely resembles your system and make any modifications to the build variables to satisfy your environment and place it in <OSSIM_DEV_HOME>/ossim_package_support/cmake/configure.sh.  Use the CMakeLists.txt found in the cmake directory to generate your desired make environment.  We suggest that you do a complete “out-of-source” build so the main source tree does not get polluted with generated files - make files, object files,  … etc.  Follow these build steps.
     83{{{
     84cd  ~/ossim-svn/src/ossim_package_support/cmake
     85}}}
     86copy a file from  build_scripts/…..  to configure.sh
     87
     88(on the mac)
     89{{{
     90cp build_scripts/mac/mac64bit-kakadu.sh configure.sh   
     91mkdir build
     92open configure.sh                       (review settings)
     93cd build
     94../configure.sh .. –G “Unix Makefiles”
     95}}}
     96(rm cmake cache .txt to clear out)
     97or for xcode generation:
     98../configure.sh .. –G “Xcode”
     99
     100{{{
     101make
     102make install
     103}}}
    77104
    781059. Xcode Build Instructions