Skip to content
Snippets Groups Projects
Commit b6c2ca3b authored by Hoop77's avatar Hoop77
Browse files

new build system structure (local install directory

parent 5d6d7506
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