blob: 78dfe7455d4758bfab753ed8b0a43d644e9c5746 [file] [edit]
# Common interface to handle creating a plugin library.
set(common_dir ${CMAKE_CURRENT_SOURCE_DIR}/common)
set(common_bin_dir ${CMAKE_CURRENT_BINARY_DIR}/common)
add_subdirectory(common)
function(add_target_library target_name lib_name)
add_library(${target_name} STATIC)
if(LLVM_LINK_LLVM_DYLIB)
set(llvm_libs LLVM)
else()
llvm_map_components_to_libnames(llvm_libs
AggressiveInstCombine Analysis BinaryFormat BitReader BitWriter CodeGen
Core Extensions FrontendOffloading InstCombine Instrumentation IPO IRReader
Linker MC Object Passes ProfileData Remarks ScalarOpts Support Target
TargetParser TransformUtils Vectorize)
endif()
llvm_update_compile_flags(${target_name})
target_include_directories(${target_name} PUBLIC ${common_dir}/include
${common_bin_dir}/include)
target_link_libraries(${target_name} PRIVATE
PluginCommon ${OFFLOAD_PTHREAD_LIB} ${llvm_libs})
target_compile_definitions(${target_name} PRIVATE TARGET_NAME=${lib_name})
target_compile_definitions(${target_name} PRIVATE
DEBUG_PREFIX="TARGET ${lib_name} RTL")
set_target_properties(${target_name} PROPERTIES POSITION_INDEPENDENT_CODE ON)
endfunction()
foreach(plugin IN LISTS LIBOMPTARGET_PLUGINS_TO_BUILD)
if(NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${plugin})
message(FATAL_ERROR "Unknown plugin target '${plugin}'")
endif()
add_subdirectory(${plugin})
endforeach()
# Make sure the parent scope can see the plugins that will be created.
set(LIBOMPTARGET_SYSTEM_TARGETS "${LIBOMPTARGET_SYSTEM_TARGETS}" PARENT_SCOPE)
set(LIBOMPTARGET_TESTED_PLUGINS "${LIBOMPTARGET_TESTED_PLUGINS}" PARENT_SCOPE)