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
|
# 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
# Mongoose
set(mongoose_SRCS src/mongoose.c)
set(mongoose_HDRS src/mongoose.h)
add_library(RTF_mongoose OBJECT ${mongoose_SRCS}
${mongoose_HDRS})
add_library(RobotTestingFramework::RTF_mongoose ALIAS RTF_mongoose)
target_include_directories(RTF_mongoose PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>)
if(NOT WIN32)
# See https://gitlab.kitware.com/cmake/cmake/issues/14778
# See https://gitlab.kitware.com/cmake/cmake/merge_requests/1524
if(NOT ${CMAKE_MINIMUM_REQUIRED_VERSION} VERSION_LESS 3.12)
message(AUTHOR_WARNING "CMAKE_MINIMUM_REQUIRED_VERSION is now ${CMAKE_MINIMUM_REQUIRED_VERSION}. object libraries can be used with target_link_libraries now.")
endif()
# target_link_libraries(RTF_mongoose INTERFACE pthread)
set_target_properties(RTF_mongoose PROPERTIES INTERFACE_LINK_LIBRARIES pthread)
endif()
|