Navigation


Changeset 120:d7acdc46134d in freeDiameter for extensions/CMakeLists.txt


Ignore:
Timestamp:
Dec 9, 2009, 5:36:38 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Renamed several extensions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/CMakeLists.txt

    r118 r120  
    5757
    5858####
    59 # Debug / development extensions
     59# Debug / test extensions
    6060
    6161OPTION(BUILD_SAMPLE "Build sample.fdx? (Simple extension to demonstrate extension mechanism, for developpers only)" OFF)
     
    6464        ENDIF (BUILD_SAMPLE)
    6565
    66 OPTION(BUILD_MONITOR "Build monitor.fdx? (display periodical debug information on the console)" OFF)
    67         IF (BUILD_MONITOR)
     66OPTION(BUILD_DBG_MONITOR "Build dbg_monitor.fdx? (display periodical debug information on the console)" OFF)
     67        IF (BUILD_DBG_MONITOR)
    6868           SUBDIRS(dbg_monitor)
    69         ENDIF (BUILD_MONITOR)
     69        ENDIF (BUILD_DBG_MONITOR)
    7070
    71 OPTION(BUILD_RT_ANY "Build rt_any? (Routing extension randomly sending message to any peer available, for testing purpose only)" OFF)
    72         IF (BUILD_RT_ANY)
    73            SUBDIRS(rt_any)
    74         ENDIF (BUILD_RT_ANY)
     71OPTION(BUILD_DBG_RT "Build dbg_rt.fdx? (Routing extension for debugging the routing module)" OFF)
     72        IF (BUILD_DBG_RT)
     73           SUBDIRS(dbg_rt)
     74        ENDIF (BUILD_DBG_RT)
    7575
    76 OPTION(BUILD_RT_DEBUG "Build rt_debug? (Routing extension for debugging the routing module)" OFF)
    77         IF (BUILD_RT_DEBUG)
    78            SUBDIRS(rt_debug)
    79         ENDIF (BUILD_RT_DEBUG)
     76OPTION(BUILD_TEST_APP "Build test_app.fdx? (Testing application to send dummy message to another peer, for testing purpose only)" OFF)
     77        IF (BUILD_TEST_APP)
     78           SUBDIRS(test_app)
     79        ENDIF (BUILD_TEST_APP)
    8080
    81 OPTION(BUILD_APP_TEST "Build app_test? (Testing application to send dummy message to another peer, for testing purpose only)" OFF)
    82         IF (BUILD_APP_TEST)
    83            SUBDIRS(app_test)
    84         ENDIF (BUILD_APP_TEST)
     81OPTION(BUILD_TEST_RT_ANY "Build test_rt_any.fdx? (Routing extension randomly sending message to any peer available, for testing purpose only)" OFF)
     82        IF (BUILD_TEST_RT_ANY)
     83           SUBDIRS(test_rt_any)
     84        ENDIF (BUILD_TEST_RT_ANY)
Note: See TracChangeset for help on using the changeset viewer.