forked from gbionics/bipedal-locomotion-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
16 lines (13 loc) · 712 Bytes
/
CMakeLists.txt
File metadata and controls
16 lines (13 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (C) 2020 Istituto Italiano di Tecnologia (IIT). All rights reserved.
# This software may be modified and distributed under the terms of the
# BSD-3-Clause license.
if(FRAMEWORK_COMPILE_SimplifiedModelControllers)
set(H_PREFIX include/BipedalLocomotion/SimplifiedModelControllers)
add_bipedal_locomotion_library(
NAME SimplifiedModelControllers
PUBLIC_HEADERS ${H_PREFIX}/CoMZMPController.h
SOURCES src/CoMZMPController.cpp
PUBLIC_LINK_LIBRARIES Eigen3::Eigen BipedalLocomotion::ParametersHandler MANIF::manif BipedalLocomotion::System
PRIVATE_LINK_LIBRARIES BipedalLocomotion::TextLogging
SUBDIRECTORIES tests)
endif()