| ####################### |
| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more contributor license |
| # agreements. See the NOTICE file distributed with this work for additional information regarding |
| # copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with the License. You may obtain |
| # a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software distributed under the License |
| # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| # or implied. See the License for the specific language governing permissions and limitations under |
| # the License. |
| # |
| ####################### |
| |
| set(CMAKE_SHARED_LIBRARY_PREFIX "") |
| |
| function(add_atsplugin name) |
| add_library(${name} MODULE ${ARGN}) |
| if(LINK_PLUGINS AND BUILD_SHARED_LIBS) |
| target_link_libraries(${name} PRIVATE ts::tsapi ts::tsutil) |
| else() |
| target_include_directories( |
| ${name} |
| PRIVATE "$<TARGET_PROPERTY:libswoc::libswoc,INCLUDE_DIRECTORIES>" |
| "$<TARGET_PROPERTY:libswoc::libswoc,INTERFACE_INCLUDE_DIRECTORIES>" |
| "$<TARGET_PROPERTY:yaml-cpp::yaml-cpp,INCLUDE_DIRECTORIES>" |
| "$<TARGET_PROPERTY:yaml-cpp::yaml-cpp,INTERFACE_INCLUDE_DIRECTORIES>" |
| ) |
| endif() |
| set_target_properties(${name} PROPERTIES PREFIX "") |
| set_target_properties(${name} PROPERTIES SUFFIX ".so") |
| remove_definitions(-DATS_BUILD) # remove the ATS_BUILD define for plugins to build without issue |
| install(TARGETS ${name} DESTINATION ${CMAKE_INSTALL_LIBEXECDIR}) |
| clang_tidy_check(${name}) |
| endfunction() |
| |
| function(verify_remap_plugin target) |
| if(ENABLE_VERIFY_PLUGINS) |
| add_test(NAME verify_remap_${target} COMMAND $<TARGET_FILE:traffic_server> -C |
| "verify_remap_plugin $<TARGET_FILE:${target}>" |
| ) |
| endif() |
| endfunction() |
| |
| function(verify_global_plugin target) |
| if(ENABLE_VERIFY_PLUGINS) |
| add_test(NAME verify_global_${target} COMMAND $<TARGET_FILE:traffic_server> -C |
| "verify_global_plugin $<TARGET_FILE:${target}>" |
| ) |
| # Process the optional suppression file parameter. |
| set(suppression_file ${ARGV1}) |
| if(suppression_file) |
| set_tests_properties( |
| verify_global_${target} PROPERTIES ENVIRONMENT "LSAN_OPTIONS=suppressions=${suppression_file}" |
| ) |
| endif() |
| endif() |
| endfunction() |
| |
| if(APPLE) |
| set(CMAKE_MODULE_LINKER_FLAGS "-undefined dynamic_lookup") |
| endif() |