Navigation


Changeset 300:71e508379671 in freeDiameter


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

Initial test for 'make install' command

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r9 r300  
    5353        SUBDIRS(extensions)
    5454ENDIF(NOT IGNORE_ALL_EXTENSIONS)
     55
     56# The documentation to install
     57INSTALL(FILES README LICENCE doc/freediameter.conf.sample
     58        DESTINATION doc
     59        COMPONENT freeDiameter-doc)
  • INSTALL

    r290 r300  
    1919See the specific INSTALL.distro files matching your situation.
    2020
    21 make install has not been tested yet and will probably not behave as expected.
    22 
    2321You can configure which extensions to build with CMake:
    2422IGNORE_ALL_EXTENSIONS:BOOL=OFF    (or the following are ignored)
  • freeDiameter/CMakeLists.txt

    r283 r300  
    6464TARGET_LINK_LIBRARIES(freeDiameterd libfreeDiameter ${FD_LIBS})
    6565
     66# The daemon is to be installed as part of the freeDiameter-daemon component.
     67INSTALL(TARGETS freeDiameterd
     68        RUNTIME DESTINATION bin
     69        COMPONENT freeDiameter-daemon)
     70
    6671# Save the list of files, if needed
    6772SET(FD_COMMON_SRC ${FD_COMMON_SRC} PARENT_SCOPE)
  • libfreeDiameter/CMakeLists.txt

    r235 r300  
    2626TARGET_LINK_LIBRARIES(libfreeDiameter ${FD_LIBS})
    2727
     28# The library is to be installed as part of the freeDiameter-common component.
     29INSTALL(TARGETS libfreeDiameter
     30        LIBRARY DESTINATION lib
     31        COMPONENT freeDiameter-common)
     32
    2833# Save the list of files for testcases in the daemon's directory
    2934SET(LFD_SRC ${LFD_SRC} PARENT_SCOPE)
Note: See TracChangeset for help on using the changeset viewer.