-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
45 lines (36 loc) · 1.53 KB
/
CMakeLists.txt
File metadata and controls
45 lines (36 loc) · 1.53 KB
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
# ======================================================================
# FILE: $URL$
# ======================================================================
# PROJECT: : tutorial-camcapture
# 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-camcapture)
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 x86_partition
# MODULES opencv)
########### FOR COMPONENT PROJECTS ################
#uncomment if you want to export a function
esrocos_export_function("camera_capture" "tutorial/cam_capture")
#uncomment to export PKG-CONFIG-file
esrocos_export_pkg-config_info( VERSION 1.0
REQUIRES opencv
)