aboutsummaryrefslogtreecommitdiffstats
path: root/MetisForwarder/app/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'MetisForwarder/app/cmake')
-rw-r--r--MetisForwarder/app/cmake/Modules/FindCCNX_Common.cmake39
-rw-r--r--MetisForwarder/app/cmake/Modules/FindCCNX_Portal.cmake40
-rw-r--r--MetisForwarder/app/cmake/Modules/FindCCNX_Transport_Rta.cmake50
-rw-r--r--MetisForwarder/app/cmake/Modules/FindLibEvent.cmake47
-rw-r--r--MetisForwarder/app/cmake/Modules/FindLibicnet.cmake39
-rw-r--r--MetisForwarder/app/cmake/Modules/FindLibparc.cmake39
-rw-r--r--MetisForwarder/app/cmake/Modules/FindLongBow.cmake44
-rw-r--r--MetisForwarder/app/cmake/Modules/FindMetis.cmake41
-rw-r--r--MetisForwarder/app/cmake/Modules/FindUncrustify.cmake8
-rw-r--r--MetisForwarder/app/cmake/Modules/detectCacheSize.cmake21
-rw-r--r--MetisForwarder/app/cmake/Modules/version.cmake15
-rwxr-xr-xMetisForwarder/app/cmake/get_version.sh20
12 files changed, 0 insertions, 403 deletions
diff --git a/MetisForwarder/app/cmake/Modules/FindCCNX_Common.cmake b/MetisForwarder/app/cmake/Modules/FindCCNX_Common.cmake
deleted file mode 100644
index 2629c160..00000000
--- a/MetisForwarder/app/cmake/Modules/FindCCNX_Common.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-########################################
-#
-# Find the Libparc libraries and includes
-# This module sets:
-# CCNX_COMMON_FOUND: True if Libparc was found
-# CCNX_COMMON_LIBRARY: The Libparc library
-# CCNX_COMMON_LIBRARIES: The Libparc library and dependencies
-# CCNX_COMMON_INCLUDE_DIR: The Libparc include dir
-#
-
-set(CCNX_COMMON_SEARCH_PATH_LIST
- ${CCNX_COMMON_HOME}
- $ENV{CCNX_COMMON_HOME}
- $ENV{CCNX_HOME}
- $ENV{PARC_HOME}
- $ENV{FOUNDATION_HOME}
- /usr/local/parc
- /usr/local/ccnx
- /usr/local/ccn
- /usr/local
- /opt
- /usr
- )
-
-find_path(CCNX_COMMON_INCLUDE_DIR ccnx/common/libccnxCommon_About.h
- HINTS ${CCNX_COMMON_SEARCH_PATH_LIST}
- PATH_SUFFIXES include
- DOC "Find the Libccnx-common includes" )
-
-find_library(CCNX_COMMON_LIBRARY NAMES ccnx_common
- HINTS ${CCNX_COMMON_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the Libccnx-common libraries" )
-
-set(CCNX_COMMON_LIBRARIES ${CCNX_COMMON_LIBRARY})
-set(CCNX_COMMON_INCLUDE_DIRS ${CCNX_COMMON_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(CCNX_Common DEFAULT_MSG CCNX_COMMON_LIBRARY CCNX_COMMON_INCLUDE_DIR)
diff --git a/MetisForwarder/app/cmake/Modules/FindCCNX_Portal.cmake b/MetisForwarder/app/cmake/Modules/FindCCNX_Portal.cmake
deleted file mode 100644
index 68384bab..00000000
--- a/MetisForwarder/app/cmake/Modules/FindCCNX_Portal.cmake
+++ /dev/null
@@ -1,40 +0,0 @@
-########################################
-#
-# Find the Libccnx-transport libraries and includes
-# This module sets:
-# CCNX_PORTAL_FOUND: True if Libparc was found
-# CCNX_PORTAL_LIBRARY: The Libparc library
-# CCNX_PORTAL_LIBRARIES: The Libparc library and dependencies
-# CCNX_PORTAL_INCLUDE_DIR: The Libparc include dir
-#
-
-set(CCNX_PORTAL_SEARCH_PATH_LIST
- ${CCNX_PORTAL_HOME}
- $ENV{CCNX_PORTAL_HOME}
- $ENV{CCNX_HOME}
- $ENV{PARC_HOME}
- $ENV{FOUNDATION_HOME}
- /usr/local/parc
- /usr/local/ccnx
- /usr/local/ccn
- /usr/local
- /opt
- /usr
- )
-
-find_path(CCNX_PORTAL_INCLUDE_DIR ccnx/api/ccnx_Portal/ccnxPortal_About.h
- HINTS ${CCNX_PORTAL_SEARCH_PATH_LIST}
- PATH_SUFFIXES include
- DOC "Find the Libccnx-portal includes" )
-
-find_library(CCNX_PORTAL_LIBRARY NAMES ccnx_api_portal
- HINTS ${CCNX_PORTAL_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the Libccnx-portal libraries" )
-
-set(CCNX_PORTAL_LIBRARIES ${CCNX_PORTAL_LIBRARY})
-
-set(CCNX_PORTAL_INCLUDE_DIRS ${CCNX_PORTAL_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(CCNX_Portal DEFAULT_MSG CCNX_PORTAL_LIBRARY CCNX_PORTAL_INCLUDE_DIR)
diff --git a/MetisForwarder/app/cmake/Modules/FindCCNX_Transport_Rta.cmake b/MetisForwarder/app/cmake/Modules/FindCCNX_Transport_Rta.cmake
deleted file mode 100644
index c43436d1..00000000
--- a/MetisForwarder/app/cmake/Modules/FindCCNX_Transport_Rta.cmake
+++ /dev/null
@@ -1,50 +0,0 @@
-########################################
-#
-# Find the Libccnx-transport libraries and includes
-# This module sets:
-# CCNX_TRANSPORT_RTA_FOUND: True if Libparc was found
-# CCNX_TRANSPORT_RTA_LIBRARY: The Libparc library
-# CCNX_TRANSPORT_RTA_LIBRARIES: The Libparc library and dependencies
-# CCNX_TRANSPORT_RTA_INCLUDE_DIR: The Libparc include dir
-#
-
-set(CCNX_TRANSPORT_RTA_SEARCH_PATH_LIST
- ${CCNX_TRANSPORT_RTA_HOME}
- $ENV{CCNX_TRANSPORT_RTA_HOME}
- $ENV{CCNX_HOME}
- $ENV{PARC_HOME}
- $ENV{FOUNDATION_HOME}
- /usr/local/parc
- /usr/local/ccnx
- /usr/local/ccn
- /usr/local
- /opt
- /usr
- )
-
-find_path(CCNX_TRANSPORT_RTA_INCLUDE_DIR ccnx/transport/librta_About.h
- HINTS ${CCNX_TRANSPORT_RTA_SEARCH_PATH_LIST}
- PATH_SUFFIXES include
- DOC "Find the Libccnx-transport-rta includes" )
-
-find_library(CCNX_TRANSPORT_RTA_LIBRARY NAMES ccnx_transport_rta
- HINTS ${CCNX_TRANSPORT_RTA_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the Libccnx-transport-rta libraries" )
-
-find_library(CCNX_API_NOTIFY_LIBRARY NAMES ccnx_api_notify
- HINTS ${CCNX_TRANSPORT_RTA_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the Libccnx-transport-rta libraries" )
-
-find_library(CCNX_API_CONTROL_LIBRARY NAMES ccnx_api_control
- HINTS ${CCNX_TRANSPORT_RTA_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the Libccnx-transport-rta libraries" )
-
-set(CCNX_TRANSPORT_RTA_LIBRARIES ${CCNX_TRANSPORT_RTA_LIBRARY} ${CCNX_API_CONTROL_LIBRARY} ${CCNX_API_NOTIFY_LIBRARY})
-
-set(CCNX_TRANSPORT_RTA_INCLUDE_DIRS ${CCNX_TRANSPORT_RTA_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(CCNX_Transport_Api DEFAULT_MSG CCNX_TRANSPORT_RTA_LIBRARY CCNX_TRANSPORT_RTA_INCLUDE_DIR)
diff --git a/MetisForwarder/app/cmake/Modules/FindLibEvent.cmake b/MetisForwarder/app/cmake/Modules/FindLibEvent.cmake
deleted file mode 100644
index 2d1ca4fe..00000000
--- a/MetisForwarder/app/cmake/Modules/FindLibEvent.cmake
+++ /dev/null
@@ -1,47 +0,0 @@
-########################################
-#
-# Find the LibEvent libraries and includes
-# This module sets:
-# LIBEVENT_FOUND: True if LibEvent was found
-# LIBEVENT_LIBRARY: The LibEvent library
-# LIBEVENT_LIBRARIES: The LibEvent library and dependencies
-# LIBEVENT_INCLUDE_DIR: The LibEvent include dir
-#
-# This module will look for the libraries in various locations
-# See the LIBEVENT_SEARCH_PATH_LIST for a full list.
-#
-# The caller can hint at locations using the following variables:
-#
-# LIBEVENT_HOME (passed as -D to cmake)
-# CCNX_DEPENDENCIES (in environment)
-# LIBEVENT_HOME (in environment)
-# CCNX_HOME (in environment)
-#
-
-set(LIBEVENT_SEARCH_PATH_LIST
- ${LIBEVENT_HOME}
- $ENV{CCNX_DEPENDENCIES}
- $ENV{LIBEVENT_HOME}
- $ENV{CCNX_HOME}
- /usr/local/ccnx
- /usr/local/ccn
- /usr/local
- /opt
- /usr
- )
-
-find_path(LIBEVENT_INCLUDE_DIR event2/event.h
- HINTS ${LIBEVENT_SEARCH_PATH_LIST}
- PATH_SUFFIXES include
- DOC "Find the LibEvent includes" )
-
-find_library(LIBEVENT_LIBRARY NAMES event
- HINTS ${LIBEVENT_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the LibEvent libraries" )
-
-set(LIBEVENT_LIBRARIES ${LIBEVENT_LIBRARY})
-set(LIBEVENT_INCLUDE_DIRS ${LIBEVENT_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(LibEvent DEFAULT_MSG LIBEVENT_LIBRARY LIBEVENT_INCLUDE_DIR)
diff --git a/MetisForwarder/app/cmake/Modules/FindLibicnet.cmake b/MetisForwarder/app/cmake/Modules/FindLibicnet.cmake
deleted file mode 100644
index 4472060b..00000000
--- a/MetisForwarder/app/cmake/Modules/FindLibicnet.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-########################################
-#
-# Find the Libparc libraries and includes
-# This module sets:
-# LIBICNET_FOUND: True if Libconsumer-producer was found
-# LIBICNETR_LIBRARY: The Libconsumer-producer library
-# LIBICNET_LIBRARIES: The Libconsumer-producer library and dependencies
-# LIBICNET_INCLUDE_DIR: The Libconsumer-producer include dir
-#
-
-set(LIBICNET_SEARCH_PATH_LIST
- ${LIBICNET_HOME}
- $ENV{LIBICNETHOME}
- $ENV{CCNX_HOME}
- $ENV{PARC_HOME}
- $ENV{FOUNDATION_HOME}
- /usr/local/parc
- /usr/local/ccnx
- /usr/local/ccn
- /usr/local
- /opt
- /usr
- )
-
-find_path(LIBICNET_INCLUDE_DIR icnet/icnet_transport_common.h
- HINTS ${LIBICNET_SEARCH_PATH_LIST}
- PATH_SUFFIXES include
- DOC "Find the libicnet includes")
-
-find_library(LIBICNET_LIBRARY NAMES icnet
- HINTS ${LIBICNET_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the libicnet libraries")
-message("---->${LIBICNET_LIBRARY} ${LIBICNET_INCLUDE_DIR}")
-set(LIBICNET_LIBRARIES ${LIBICNET_LIBRARY})
-set(LIBICNET_INCLUDE_DIRS ${LIBICNET_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Libicnet DEFAULT_MSG LIBICNET_LIBRARY LIBICNET_INCLUDE_DIR) \ No newline at end of file
diff --git a/MetisForwarder/app/cmake/Modules/FindLibparc.cmake b/MetisForwarder/app/cmake/Modules/FindLibparc.cmake
deleted file mode 100644
index 02835161..00000000
--- a/MetisForwarder/app/cmake/Modules/FindLibparc.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-########################################
-#
-# Find the Libparc libraries and includes
-# This module sets:
-# LIBPARC_FOUND: True if Libparc was found
-# LIBPARC_LIBRARY: The Libparc library
-# LIBPARC_LIBRARIES: The Libparc library and dependencies
-# LIBPARC_INCLUDE_DIR: The Libparc include dir
-#
-
-set(LIBPARC_SEARCH_PATH_LIST
- ${LIBPARC_HOME}
- $ENV{LIBPARC_HOME}
- $ENV{CCNX_HOME}
- $ENV{PARC_HOME}
- $ENV{FOUNDATION_HOME}
- /usr/local/parc
- /usr/local/ccnx
- /usr/local/ccn
- /usr/local
- /opt
- /usr
- )
-
-find_path(LIBPARC_INCLUDE_DIR parc/libparc_About.h
- HINTS ${LIBPARC_SEARCH_PATH_LIST}
- PATH_SUFFIXES include
- DOC "Find the Libparc includes" )
-
-find_library(LIBPARC_LIBRARY NAMES parc
- HINTS ${LIBPARC_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the Libparc libraries" )
-
-set(LIBPARC_LIBRARIES ${LIBPARC_LIBRARY})
-set(LIBPARC_INCLUDE_DIRS ${LIBPARC_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Libparc DEFAULT_MSG LIBPARC_LIBRARY LIBPARC_INCLUDE_DIR)
diff --git a/MetisForwarder/app/cmake/Modules/FindLongBow.cmake b/MetisForwarder/app/cmake/Modules/FindLongBow.cmake
deleted file mode 100644
index e35888eb..00000000
--- a/MetisForwarder/app/cmake/Modules/FindLongBow.cmake
+++ /dev/null
@@ -1,44 +0,0 @@
-########################################
-#
-# Find the LongBow libraries and includes
-# This module sets:
-# LONGBOW_FOUND: True if LongBow was found
-# LONGBOW_LIBRARY: The LongBow library
-# LONGBOW_LIBRARIES: The LongBow library and dependencies
-# LONGBOW_INCLUDE_DIR: The LongBow include dir
-#
-
-set(LONGBOW_SEARCH_PATH_LIST
- ${LONGBOW_HOME}
- $ENV{LONGBOW_HOME}
- $ENV{CCNX_HOME}
- $ENV{PARC_HOME}
- $ENV{FOUNDATION_HOME}
- /usr/local/parc
- /usr/local/ccnx
- /usr/local/ccn
- /usr/local
- /opt
- /usr
- )
-
-find_path(LONGBOW_INCLUDE_DIR LongBow/longBow_About.h
- HINTS ${LONGBOW_SEARCH_PATH_LIST}
- PATH_SUFFIXES include
- DOC "Find the LongBow includes" )
-
-find_library(LONGBOW_LIBRARY NAMES longbow
- HINTS ${LONGBOW_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the LongBow libraries" )
-
-find_library(LONGBOW_REPORT_LIBRARY NAMES longbow-textplain longbow-ansiterm
- HINTS ${LONGBOW_SEARCH_PATH_LIST}
- PATH_SUFFIXES lib
- DOC "Find the LongBow report libraries" )
-
-set(LONGBOW_LIBRARIES ${LONGBOW_LIBRARY} ${LONGBOW_REPORT_LIBRARY})
-set(LONGBOW_INCLUDE_DIRS ${LONGBOW_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(LongBow DEFAULT_MSG LONGBOW_LIBRARY LONGBOW_INCLUDE_DIR)
diff --git a/MetisForwarder/app/cmake/Modules/FindMetis.cmake b/MetisForwarder/app/cmake/Modules/FindMetis.cmake
deleted file mode 100644
index a3b4bff1..00000000
--- a/MetisForwarder/app/cmake/Modules/FindMetis.cmake
+++ /dev/null
@@ -1,41 +0,0 @@
-########################################
-#
-# Find the LibMetis libraries and includes
-# This module sets:
-# LIBMETIS_FOUND: True if Libmetis was found
-# LIBMETIS_LIBRARY: The Libmetis library
-# LIBMETIS_LIBRARIES: The Libmetis library and dependencies
-# LIBMETIS_INCLUDE_DIR: The Libmetis include dir
-#
-
-set(METIS_SEARCH_PATH_LIST
-
-${LIBMETISHOME}
-$ENV{LIBMETISHOME}
-$ENV{CCNX_HOME}
-$ENV{FOUNDATION_HOME}
-/usr/local/
-/usr/local/ccnx
-/usr/local/ccn
-/usr/local
-/opt
-/usr
-)
-
-
-
-find_path(METIS_INCLUDE_DIR ccnx/forwarder/metis/metis_About.h
-HINTS ${METIS_SEARCH_PATH_LIST}
-PATH_SUFFIXES include
-DOC "Find the libmetis includes")
-
-find_library(LIBMETIS_LIBRARY NAMES metis
-HINTS ${LIBMETIS_SEARCH_PATH_LIST}
-PATH_SUFFIXES lib
-DOC "Find the libmetis libraries")
-
-set(LIBMETIS_LIBRARIES ${LIBMETIS_LIBRARY})
-set(LIBMETIS_INCLUDE_DIRS ${LIBMETIS_INCLUDE_DIR})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Libmetis DEFAULT_MSG LIBMETIS_LIBRARY LIBMETIS_INCLUDE_DIR)
diff --git a/MetisForwarder/app/cmake/Modules/FindUncrustify.cmake b/MetisForwarder/app/cmake/Modules/FindUncrustify.cmake
deleted file mode 100644
index e53f65fe..00000000
--- a/MetisForwarder/app/cmake/Modules/FindUncrustify.cmake
+++ /dev/null
@@ -1,8 +0,0 @@
-# Find uncrustify program
-#
-find_program( UNCRUSTIFY_BIN uncrustify
- PATHS
- $ENV{UNCRUSTIFY_HOME}
- )
-
-message( "-- UNCRUSTIFY found in ${UNCRUSTIFY_BIN}" )
diff --git a/MetisForwarder/app/cmake/Modules/detectCacheSize.cmake b/MetisForwarder/app/cmake/Modules/detectCacheSize.cmake
deleted file mode 100644
index 469d2627..00000000
--- a/MetisForwarder/app/cmake/Modules/detectCacheSize.cmake
+++ /dev/null
@@ -1,21 +0,0 @@
-# Detect the cache size
-#
-# XXX: TODO: This is a bug when cross compiling. We are detecting the local
-# Cache Line size and not the target cache line size. We should provide some
-# way to define this
-
-set(LEVEL1_DCACHE_LINESIZE 32)
-
-if( APPLE )
- execute_process(COMMAND sysctl -n hw.cachelinesize
- OUTPUT_VARIABLE LEVEL1_DCACHE_LINESIZE
- OUTPUT_STRIP_TRAILING_WHITESPACE)
-endif( APPLE )
-
-if( ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" )
- execute_process(COMMAND getconf LEVEL1_DCACHE_LINESIZE
- OUTPUT_VARIABLE LEVEL1_DCACHE_LINESIZE
- OUTPUT_STRIP_TRAILING_WHITESPACE)
-endif()
-
-message("-- Cache line size: ${LEVEL1_DCACHE_LINESIZE}")
diff --git a/MetisForwarder/app/cmake/Modules/version.cmake b/MetisForwarder/app/cmake/Modules/version.cmake
deleted file mode 100644
index 74831674..00000000
--- a/MetisForwarder/app/cmake/Modules/version.cmake
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# Get a version to pass on the command line
-#
-execute_process(COMMAND ${PROJECT_SOURCE_DIR}/cmake/get_version.sh ${PROJECT_SOURCE_DIR}
- OUTPUT_VARIABLE RELEASE_VERSION
- OUTPUT_STRIP_TRAILING_WHITESPACE)
-
-execute_process(COMMAND date -u +%Y-%m-%dT%H:%M:%SZ
- OUTPUT_VARIABLE ISO_DATE
- OUTPUT_STRIP_TRAILING_WHITESPACE)
-
-MESSAGE( STATUS "Configuring version ${RELEASE_VERSION}" )
-
-add_definitions("-DRELEASE_VERSION=\"${RELEASE_VERSION}\"")
-
diff --git a/MetisForwarder/app/cmake/get_version.sh b/MetisForwarder/app/cmake/get_version.sh
deleted file mode 100755
index 34c6ddb2..00000000
--- a/MetisForwarder/app/cmake/get_version.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-DATE_VERSION=`date "+%Y%m%d"`
-
-if [ ! -d $1 ]; then
- echo 0.$DATE_VERSION
- exit
-fi
-
-if [ -f $1/BASE_VERSION ]; then
- BASE_VERSION=`cat $1/BASE_VERSION`.
-fi
-
-GIT=`which git`
-
-if test -x $GIT -a -f $1/.git/config; then
- GIT_VERSION=.`git -C $1 rev-parse HEAD | cut -c 1-8`
-fi
-
-echo $BASE_VERSION$DATE_VERSION$GIT_VERSION