forked from robotology/icub-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
102 lines (76 loc) · 3.12 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# iCub Robot Unit Tests (Robot Testing Framework)
#
# Copyright (C) 2015-2019 Istituto Italiano di Tecnologia (IIT)
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cmake_minimum_required(VERSION 3.5)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
project(iCub-Tests)
find_package(RobotTestingFramework 2 COMPONENTS DLL REQUIRED)
find_package(YARP 3.5.1 COMPONENTS os math robottestingframework REQUIRED)
# set the output plugin directory to collect all the shared libraries
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/plugins)
set(CMAKE_SHARED_MODULE_PREFIX "")
# options
option(ICUB_TESTS_USES_ICUB_MAIN "Turn on to compile the tests that depend on the icub-main repository" ON)
option(ICUB_TESTS_USES_CODYCO "Turn on to compile the test that depend on the codyco-superbuil repository" OFF)
# Build examples?
add_subdirectory(example/cpp)
# Build camera tests
add_subdirectory(src/camera)
# Build position direct tests
add_subdirectory(src/positionDirect)
# Build positionControl-accuracy tests
add_subdirectory(src/positionControl-accuracy)
add_subdirectory(src/positionControl-accuracy-ExternalPid)
# Build openloop tests
add_subdirectory(src/openloop-consistency)
# Build torque control tests
add_subdirectory(src/torqueControl-consistency)
add_subdirectory(src/torqueControl-stiffDampCheck)
# Build cartesian controller tests
add_subdirectory(src/cartesian-control)
# Build gaze controller tests
add_subdirectory(src/gaze-control)
if(ICUB_TESTS_USES_CODYCO)
add_subdirectory(src/torqueControl-gravityConsistency)
endif()
# Build optical encoder tests
add_subdirectory(src/motorEncoders-consistency)
add_subdirectory(src/opticalEncoders-drift)
add_subdirectory(src/motorEncodersSignCheck)
# Build model consistency check
if(ICUB_TESTS_USES_ICUB_MAIN)
find_package(ICUB REQUIRED)
add_subdirectory(src/models-consistency)
add_subdirectory(src/demoRedBall)
endif()
# Build motor tests
add_subdirectory(src/motor-tests)
add_subdirectory(src/jointLimits)
add_subdirectory(src/motor-stiction)
# Build force sensor tests
add_subdirectory(src/ftsensor-tests)
# Build controlModes tests
add_subdirectory(src/controlModes)
# Build ports frequency tests
add_subdirectory(src/ports-frequency)
#interfeces
add_subdirectory(src/movementReferencesTest)
# Build skinWrapper tests
add_subdirectory(src/skinWrapperTest)
# Build system status tests (needs yarp newer than f0c9e83a66d1e2685361f82dd98b20ed6479ec04)
#add_subdirectory(src/system-status)