Navigation


Changeset 304:ad3c46016584 in freeDiameter for INSTALL


Ignore:
Timestamp:
May 14, 2010, 5:26:53 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Added install directives for cmake; also allow default directory to seek for extensions and configuration files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • INSTALL

    r300 r304  
    33
    44Building in a separate directory is recommended:
    5 mkdir build
    6 cd build
    7 cmake ../
    8 make
     5# mkdir build
     6# cd build
     7# cmake ../
     8# make
     9
     10Note: instead of passing options on the command line, you can use a CMake front-end (for example ccmake or cmake-gui)
     11or edit the CCmakeCache.txt file directly. If your cmake installation is recent, you can also do:
     12# mkdir build
     13# cd build
     14# cmake ../
     15# make edit_cache
     16# make
     17
    918
    1019You can enable the unary tests by doing:
    11 cmake -DSKIP_TESTS:BOOL=OFF ../
    12 make
    13 make tests
    14 
    15 Note: instead of passing options on the command line, you can use a CMake front-end (for example ccmake or cmake-gui)
    16 or edit the CCmakeCache.txt file directly.
     20# cmake -DSKIP_TESTS:BOOL=OFF ../
     21# make
     22# make tests
    1723
    1824Note that there are dependencies on external tools that may not be enforced by the configure script.
Note: See TracChangeset for help on using the changeset viewer.