
Security plugins are built but not installed. Add target to CMakeLists.txt for three security plugins. Signed-off-by: Sid Faber <sid.faber@canonical.com>
49 lines
1.7 KiB
CMake
49 lines
1.7 KiB
CMake
#
|
|
# Copyright(c) 2006 to 2019 ADLINK Technology Limited and others
|
|
#
|
|
# This program and the accompanying materials are made available under the
|
|
# terms of the Eclipse Public License v. 2.0 which is available at
|
|
# http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
|
|
# v. 1.0 which is available at
|
|
# http://www.eclipse.org/org/documents/edl-v10.php.
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
|
|
#
|
|
include (GenerateExportHeader)
|
|
|
|
PREPEND(srcs_accesscontrol "${CMAKE_CURRENT_LIST_DIR}/src"
|
|
access_control_objects.c
|
|
access_control_parser.c
|
|
access_control_utils.c
|
|
access_control.c
|
|
)
|
|
|
|
add_library(dds_security_ac SHARED "")
|
|
|
|
generate_export_header(
|
|
dds_security_ac
|
|
BASE_NAME SECURITY
|
|
EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/include/dds/security/export.h"
|
|
)
|
|
|
|
target_link_libraries(dds_security_ac PUBLIC ddsc)
|
|
target_link_libraries(dds_security_ac PUBLIC OpenSSL::SSL)
|
|
if(CMAKE_GENERATOR MATCHES "Visual Studio")
|
|
set_target_properties(dds_security_ac PROPERTIES LINK_FLAGS "/ignore:4099")
|
|
endif()
|
|
target_sources(dds_security_ac PRIVATE ${srcs_accesscontrol})
|
|
target_include_directories(dds_security_ac
|
|
PUBLIC
|
|
"$<BUILD_INTERFACE:$<TARGET_PROPERTY:security_api,INTERFACE_INCLUDE_DIRECTORIES>>"
|
|
"$<BUILD_INTERFACE:$<TARGET_PROPERTY:security_core,INTERFACE_INCLUDE_DIRECTORIES>>"
|
|
"$<BUILD_INTERFACE:$<TARGET_PROPERTY:ddsrt,INTERFACE_INCLUDE_DIRECTORIES>>"
|
|
"$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>"
|
|
)
|
|
|
|
install(
|
|
TARGETS dds_security_ac
|
|
EXPORT "${PROJECT_NAME}"
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT lib
|
|
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT lib
|
|
ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT lib
|
|
)
|