Changes between Version 15 and Version 16 of BuildingOnUnixWithCMake


Ignore:
Timestamp:
Mar 5, 2010, 6:00:08 PM (14 years ago)
Author:
mloskot
Comment:

make uninstall, use BUILDDIR

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnUnixWithCMake

    v15 v16  
    2424== Configure ==
    2525
    26 Important, it is highly recommended to configure build out of source code tree.
     26Important, it is highly recommended to configure build out of source code tree. For this purpose, prepare build directory (from now on referred to as ''BUILDDIR''):
    2727
    2828{{{
     
    5252== Build ==
    5353
     54In order to build GEOS C++ and C libraries, issue the command in ''BUILDDIR'':
     55
    5456{{{
    5557$ make
     
    6062In CMake build system, testing capabilities are provided by [http://www.itk.org/Wiki/CTest:FAQ CTest] which is distributed together with CMake package.
    6163
    62 After the build is ready, tests can be run. Natively, CMake uses target named ''test'':
     64After the build is ready, tests can be executed from inside ''BUILDDIR''. Natively, CMake uses target named ''test'':
    6365
    6466{{{
     
    8183== Install ==
    8284
     85In order to install both C and C++ API libraries as well as headers, stay on in ''BUILDDIR'' and execue:
     86
    8387{{{
    8488$ make install
     89}}}
     90
     91== Uninstall ==
     92
     93Still in ''BUILDDIR'', run:
     94
     95{{{
     96$ make uninstall
    8597}}}
    8698