Navigation


Changeset 561:1cb9352359f4 in freeDiameter for extensions/app_radgw


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

More cleanups in the packaging. Also removed rgw_common.so which was quite useless

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_radgw/CMakeLists.txt

    r551 r561  
    1313
    1414
    15 ########### Utility library #############
    16 # utility libray for the extension and its plugins
    17 # See rgw_common.h for detail
    18 
    19 SET( RG_COMMON_SRC
    20         radius.c
    21         md5.c
    22         rgw_msg_codes.c
    23         rgw_msg_attrtype.c
    24 )
    25 SET( RG_COMMON_HEADER
    26         rgw_common.h
    27         radius.h
    28         md5.h
    29         hostap_compat.h
    30 )
    31 ADD_LIBRARY(rgw_common SHARED ${RG_COMMON_SRC})
    32 SET_TARGET_PROPERTIES(rgw_common PROPERTIES PREFIX "" )
    33 
    34 
    35 
    3615########### Main app_radgw extension #############
    3716
     
    4322# List of source files
    4423SET( RGW_DEFAULT_SRC
     24        radius.c
     25        md5.c
     26        rgw_msg_codes.c
     27        rgw_msg_attrtype.c
    4528        rgw_main.c
    4629        lex.rgw_conf.c
     
    5336)
    5437
     38SET( RG_COMMON_HEADER
     39        rgw_common.h
     40        radius.h
     41        md5.h
     42        hostap_compat.h
     43)
     44
    5545# Compile these files as a freeDiameter extension.
    5646FD_ADD_EXTENSION(app_radgw ${RGW_DEFAULT_SRC} ${RG_COMMON_HEADER})
    57 TARGET_LINK_LIBRARIES(app_radgw rgw_common)
    58 
    5947
    6048
     
    6755  SET_TARGET_PROPERTIES(${PLGNAME} PROPERTIES PREFIX "" )
    6856  SET_TARGET_PROPERTIES(${PLGNAME} PROPERTIES SUFFIX ".rgwx" )
    69   TARGET_LINK_LIBRARIES(${PLGNAME} rgw_common)
    7057  INSTALL(TARGETS ${PLGNAME}
    7158        LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
     
    126113        COMPONENT freeDiameter-radius-gateway)
    127114       
    128 INSTALL(TARGETS rgw_common
    129         LIBRARY DESTINATION ${INSTALL_LIBRARY_SUFFIX}
    130         COMPONENT freeDiameter-radius-gateway)
    131 
    132115# Note that all compiled plugins are added by the RGWX_ADD_PLUGIN macro in the component freeDiameter-radius-gateway as well.
Note: See TracChangeset for help on using the changeset viewer.