aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vpp/perf/crypto/10ge2p1x710-ethip4ipsec400tnlsw-ip4base-int-aes128cbc-hmac512sha-ndrpdr.robot
diff options
context:
space:
mode:
authorMaciek Konstantynowicz <mkonstan@cisco.com>2020-12-16 13:07:42 +0000
committerMaciek Konstantynowicz <mkonstan@cisco.com>2020-12-16 13:07:42 +0000
commita28e97a231fbddc2cc04f073dd8b402c29cc5aaf (patch)
treece3673429ce3e0c6927477cfbaa42f43934fa057 /tests/vpp/perf/crypto/10ge2p1x710-ethip4ipsec400tnlsw-ip4base-int-aes128cbc-hmac512sha-ndrpdr.robot
parent810b48dd48c8cfd6c3e6d0a0c6099846977709a9 (diff)
report: added report static content for new testbed type AMD EPYC Zen2 7532
Change-Id: I9099cce7c4da15a1b3a9aafd37825b284c5ed7fe Signed-off-by: Maciek Konstantynowicz <mkonstan@cisco.com>
Diffstat (limited to 'tests/vpp/perf/crypto/10ge2p1x710-ethip4ipsec400tnlsw-ip4base-int-aes128cbc-hmac512sha-ndrpdr.robot')
0 files changed, 0 insertions, 0 deletions
under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. cmake_minimum_required(VERSION 3.5 FATAL_ERROR) project(hicn-fdio) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules") set_property(GLOBAL PROPERTY USE_FOLDERS ON) set(HICN_INCLUDE_DIRS ${PROJECT_BINARY_DIR}/lib) ## Enabled components option(BUILD_LIBHICN "Build the hicn core library" ON) option(BUILD_HICNLIGHT "Build the hicn light forwarder" ON) option(BUILD_LIBTRANSPORT "Build the hicn transport library" ON) option(BUILD_UTILS "Build the hicn utils" ON) option(BUILD_APPS "Build the hicn apps" ON) option(BUILD_HICNPLUGIN "Build the hicn vpp plugin" OFF) list(APPEND dir_options BUILD_LIBHICN BUILD_HICNLIGHT BUILD_LIBTRANSPORT BUILD_UTILS BUILD_APPS ) set(BUILD_LIBHICN_DIR lib) set(BUILD_HICNLIGHT_DIR hicn-light) set(BUILD_LIBTRANSPORT_DIR libtransport) set(BUILD_UTILS_DIR utils) set(BUILD_APPS_DIR apps) set(BUILD_HICNPLUGIN_DIR hicn-plugin) ## HEADER FILES set(LIBHICN_HEADER_FILES) set(LIBHICN_LIGHT_HEADER_FILES) set(LIBTRANSPORT_HEADER_FILES) ## Add enabled components foreach (opt ${dir_options}) if (${opt}) list(APPEND subdirs ${${opt}_DIR} ) endif() endforeach() ## Static targets set(LIBHICN hicn) set(LIBHICN_LIGHT hicn-light) set(HICN_LIGHT_CONTROL hicnLightControl) set(HICN_LIGHT_DAEMON hicnLightDaemon) set(HICN_PLUGIN hicn-plugin) set(LIBTRANSPORT hicntransport) set(HICN_UTILS hicn-utils) set(HICN_APPS hicn-apps) if (BUILD_HICNPLUGIN AND "${CMAKE_SYSTEM_NAME}" STREQUAL "Linux" ) list(APPEND subdirs ${BUILD_HICNPLUGIN_DIR} ) list(APPEND HICN_BINARY_API_INCLUDE_DIRS ${PROJECT_BINARY_DIR}/hicn-plugin ${PROJECT_BINARY_DIR}/hicn-plugin/vpp_plugins ) set(LIBTRANSPORT ${LIBTRANSPORT}-memif) set(HICN_UTILS ${HICN_UTILS}-memif) set(HICN_APPS ${HICN_APPS}-memif) endif() ## Shared targets set(LIBHICN_SHARED ${LIBHICN}.shared) set(LIBTRANSPORT_SHARED ${LIBTRANSPORT}.shared) if (NOT WIN32) add_compile_options(-Wall -Werror) endif () message(STATUS "Building the following subprojects: ${subdirs}") foreach(dir ${subdirs}) add_subdirectory(${dir}) endforeach() include(Packager) make_packages()