-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
54 lines (44 loc) · 1.89 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ======================================================================
# FILE: $URL$
# ======================================================================
# PROJECT: : tutorial-plex
# VERSION : @VERION@
# LANGUAGE : CMake script
# AUTHOR : @AUTHOR@
# COPYRIGHT : @COPYRIGHT@
# COMPILER : cmake version 3.0.2
# CREATED : @CREATED@
# CLASS : -
# LAST MODIFIED : @LASTMODIFIED@
# GENERATED FROM MODEL : -
# ORIGINAL MODEL AUTHOR: -
# ----------------------------------------------------------------------
# @DESCRIPTION@
# ----------------------------------------------------------------------
# HISTORY
# $History$
# ======================================================================
cmake_minimum_required(VERSION 3.2)
project(tutorial-plex)
include($ENV{ESROCOS_CMAKE})
#required function call to set up esrocos
esrocos_init()
########### FOR INTEGRATION PROJECTS ##############
#uncomment if you want to add dependencies for the build process (only required in integration projects)
esrocos_add_dependency(PARTITION remote
MODULES controldev eigen3 base_support)
esrocos_add_dependency(PARTITION onboard
MODULES eigen3 base_support plex-pose_visualisation fake_rover_lib)
#esrocos_add_dependency(PARTITION <Name Of Partition>
# MODULES <PKG-Config findable module>[,secondmodule,thirdmodule...])
########### FOR COMPONENT PROJECTS ################
#uncomment if you want to export a function
#esrocos_export_function("example" "tutorial/example_dir")
#uncomment to export PKG-CONFIG-file
#esrocos_export_pkgconfig( VERSION 1.0
# DESCRIPTION "none"
# REQUIRES ""
# LIBS ""
# STATIC_LIBS ""
# C_FLAGS ""
# )