cmake-plugin: 改进插件的宏构建,为引用型生成插件的构建进行兼容

This commit is contained in:
zinface 2024-03-21 03:23:09 +08:00
parent df033e899e
commit b6c27ca8b7
2 changed files with 22 additions and 2 deletions

View File

@ -37,6 +37,9 @@ if(USE_NOTEPAD_PLUGIN)
framework-plugins/hello-simple/template
framework-plugins/hello-simple/buildin.qrc)
# 使
# include(path/to/plugin.cmake)
# plantuml
add_framework_plugin(framework-plantuml-preview
framework-plugins/plantuml-preview

View File

@ -14,10 +14,16 @@ if(${${_target}_ENABLE})
foreach(arg IN LISTS ${_target}_ARGN)
list(APPEND ${_target}_DIR_OR_SOURCES ${arg})
endforeach(arg IN LISTS ${_target}_ARGN)
# 使 add_framework_plugin
set(FRAMEWORK_DIR ${CMAKE_CURRENT_LIST_DIR}/framework)
if(NOT EXISTS FRAMEWORK_DIR)
# CMakeLists.txt
set(FRAMEWORK_DIR ${CMAKE_CURRENT_SOURCE_DIR}/framework)
endif(NOT EXISTS FRAMEWORK_DIR)
spark_add_library_path(${_target} SHARED
${CMAKE_CURRENT_LIST_DIR}/framework
${FRAMEWORK_DIR}
${${_target}_DIR_OR_SOURCES}
)
target_include_directories(${_target} PRIVATE
@ -67,6 +73,17 @@ if(${${_target}_ENABLE})
)
endif(WIN32 AND NOTEPAD_BUILD_BY_SHARED)
spark_cmake_debug(
">>>>>>>>>>>>>>>>>>>>>>>>>>> ${_target} CMake Debug <<<<<<<<<<<<<<<<<<<<<<<<<<<"
"${_target} LINK_LIBRARIES: $<TARGET_PROPERTY:${_target},LINK_LIBRARIES>"
"${_target} COMPILE_DEFINITIONS: $<TARGET_PROPERTY:${_target},COMPILE_DEFINITIONS>"
"${_target} INTERFACE: $<TARGET_PROPERTY:${_target},INTERFACE>"
"${_target} TARGET_FILE_BASE_NAME: $<TARGET_FILE_BASE_NAME:${_target}>"
"${_target} TARGET_FILE_NAME: $<TARGET_FILE_NAME:${_target}>"
">>>>>>>>>>>>>>>>>>>>>>>>>>> ${_target} CMake Debug <<<<<<<<<<<<<<<<<<<<<<<<<<<"
)
endif(${${_target}_ENABLE})
endmacro(add_framework_plugin _target)