Skip to content
Snippets Groups Projects
Commit dd8cc29b authored by Franz Bethke's avatar Franz Bethke
Browse files

Merge branch 'master' of gitlab.informatik.hu-berlin.de:badenhop/Hochautomatisiertes-Fahren

* 'master' of gitlab.informatik.hu-berlin.de:badenhop/Hochautomatisiertes-Fahren:
  new build system structure (local install directory
parents c36c9b66 b6c2ca3b
No related merge requests found
Showing
with 34 additions and 7 deletions
cmake_minimum_required(VERSION 3.5.1)
project(global)
add_subdirectory(Communication/NetworkingLib)
add_subdirectory(Communication/PlatoonProtocolLib)
add_subdirectory(Communication/PC2CarLib)
add_subdirectory(catkin_ws/src/car)
\ No newline at end of file
//
// Created by philipp on 17.12.17.
//
#ifndef NETWORKINGLIB_NETWORKINGCONFIG_H
#define NETWORKINGLIB_NETWORKINGCONFIG_H
#define NetworkingLib_VERSION_MAJOR 0
#define NetworkingLib_VERSION_MINOR 1
#endif //NETWORKINGLIB_NETWORKINGCONFIG_H
# - Config file for the NetworkingLib package
# It defines the following variable
# NETWORKINGLIB_INCLUDE_DIRS - include directories for NetworkingLib
# Compute paths
get_filename_component(NETWORKINGLIB_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(NETWORKINGLIB_INCLUDE_DIRS "${NETWORKINGLIB_CMAKE_DIR}/../../../include/NetworkingLib/..")
# Our library dependencies (contains definitions for IMPORTED targets)
if(NOT TARGET NetworkingLib)
include("${NETWORKINGLIB_CMAKE_DIR}/NetworkingLibTargets.cmake")
endif()
set(PACKAGE_VERSION "")
# Check whether the requested PACKAGE_FIND_VERSION is compatible
if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}")
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}")
set(PACKAGE_VERSION_EXACT TRUE)
endif()
endif()
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment