Changes between Version 8 and Version 9 of BuildingOnUnixWithCMake


Ignore:
Timestamp:
Jan 27, 2010, 3:23:27 PM (14 years ago)
Author:
mloskot
Comment:

Updated build steps

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnUnixWithCMake

    v8 v9  
    11{{{
    22#!html
    3 <p style="font-size: 120%; color: red; ">
    4 *** IMPORANT: Testers of CMake configuration wanted! Please, try to build GEOS with CMake and report any problems by submitting New Ticket ***
     3<p style="font-size: 100%; color: red; ">
     4*** IMPORANT: Testers of CMake configuration wanted! Please, try to build GEOS with CMake and report any problems by submitting New Ticket. Patches welcome! ***
    55</p>
    66}}}
     
    2020 * GEOS source code. Currently, only source code in SVN [source:trunk trunk] is configured for CMake
    2121
    22 == Configuring ==
    23 
     22== Configure ==
    2423
    2524Important, it is highly recommended to configure build out of source code tree.
     
    3231$ cd build
    3332$ cmake ../trunk
     33$ make help
    3434}}}
    3535
    3636There is collection of [http://cmake.org/cmake/help/cmake-2-8-docs.html#section_Variables CMake variables] available to set by user to control various aspects of compilation and installation. For instance ''CMAKE_INSTALL_PREFIX'' variable which by default is set to ''/usr/local'' directory.
    3737
    38 == Building ==
     38== Build ==
    3939
    4040{{{
    4141$ make
    4242}}}
     43
     44== Install ==
     45
     46{{{
     47$ make install
     48}}}
     49
     50
     51== Test ==
     52
     53'''TODO''' - add ''make test'' target
     54
     55In the meantime, it is possible to run tests manually, from ''build'' directory:
     56
     57{{{
     58$ ./tests/unit/geos_unit
     59}}}