102 lines
3.5 KiB
CMake
102 lines
3.5 KiB
CMake
#[[
|
|
Copyright (c) 2019-2023, Arm Limited and Contributors
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
Licensed 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.
|
|
|
|
]]
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# Snake case to Pascal case helper
|
|
|
|
function(snake_case_to_pascal_case SNAKE PASCAL)
|
|
set(SNAKE_CASE ${SNAKE})
|
|
string(LENGTH "${SNAKE_CASE}" LEN)
|
|
string(REGEX MATCH "(^.)" FIRST_LETTER "${SNAKE_CASE}")
|
|
string(TOUPPER "${FIRST_LETTER}" FIRST_LETTER)
|
|
string(SUBSTRING "${SNAKE_CASE}" 1 ${LEN} REST)
|
|
set(SNAKE_CASE "${FIRST_LETTER}${REST}")
|
|
|
|
string(REGEX MATCH "_([a-zA-Z])[^_]+" HAS_UNDER_SCORES "${SNAKE_CASE}")
|
|
if(HAS_UNDER_SCORES)
|
|
while(true)
|
|
string(REGEX MATCH "_([a-zA-Z])" NEXT "${SNAKE_CASE}")
|
|
|
|
if(NEXT)
|
|
string(SUBSTRING "${NEXT}" 1 1 FIRST_LETTER)
|
|
string(TOUPPER "${FIRST_LETTER}" FIRST_LETTER)
|
|
string(REGEX REPLACE "${NEXT}" "${FIRST_LETTER}" SNAKE_CASE "${SNAKE_CASE}")
|
|
else()
|
|
break()
|
|
endif()
|
|
|
|
endwhile()
|
|
endif()
|
|
|
|
set(${PASCAL} ${SNAKE_CASE} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
# Plugins
|
|
file(GLOB PLUGINS_FILES CONFIGURE_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
|
|
set(PLUGINS)
|
|
foreach(DIR IN LISTS PLUGINS_FILES)
|
|
if (IS_DIRECTORY ${DIR})
|
|
string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" PLUGIN ${DIR})
|
|
list(APPEND PLUGINS "${PLUGIN}")
|
|
endif()
|
|
endforeach()
|
|
|
|
# filter compiled plugins
|
|
if(NOT ${VKB_BUILD_TESTS})
|
|
list(REMOVE_ITEM PLUGINS "start_test")
|
|
endif()
|
|
|
|
# Generate plugins.cpp
|
|
|
|
set(PLUGIN_INCLUDE_FILES)
|
|
set(INIT_PLUGINS)
|
|
|
|
foreach(EXT_SNAKE IN LISTS PLUGINS)
|
|
message("-- Plugin `${EXT_SNAKE}` - BUILD")
|
|
snake_case_to_pascal_case("${EXT_SNAKE}" EXT_PASCAL)
|
|
|
|
list(APPEND PLUGIN_INCLUDE_FILES "#include \"${EXT_SNAKE}/${EXT_SNAKE}.h\"")
|
|
list(APPEND INIT_PLUGINS "\t\tADD_PLUGIN(${EXT_PASCAL})")
|
|
endforeach()
|
|
|
|
list(JOIN PLUGIN_INCLUDE_FILES "\n" PLUGIN_INCLUDE_FILES)
|
|
list(JOIN INIT_PLUGINS ";\n" INIT_PLUGINS)
|
|
set(INIT_PLUGINS "${INIT_PLUGINS};")
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/plugins.cpp.in ${CMAKE_CURRENT_BINARY_DIR}/plugins.cpp)
|
|
|
|
# Create plugins library
|
|
|
|
set(SRC_FILES
|
|
${CMAKE_CURRENT_BINARY_DIR}/plugins.cpp
|
|
plugins.h
|
|
)
|
|
|
|
foreach(PLUGIN IN LISTS PLUGINS)
|
|
list(APPEND SRC_FILES "${PLUGIN}/${PLUGIN}.h")
|
|
list(APPEND SRC_FILES "${PLUGIN}/${PLUGIN}.cpp")
|
|
endforeach()
|
|
|
|
add_library(plugins OBJECT ${SRC_FILES})
|
|
target_include_directories(plugins PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} $<TARGET_PROPERTY:apps,INTERFACE_INCLUDE_DIRECTORIES> $<TARGET_PROPERTY:framework,INTERFACE_INCLUDE_DIRECTORIES>)
|
|
target_compile_options(plugins PRIVATE $<TARGET_PROPERTY:apps,INTERFACE_COMPILE_OPTIONS> $<TARGET_PROPERTY:framework,INTERFACE_COMPILE_OPTIONS>)
|
|
target_compile_features(plugins PRIVATE $<TARGET_PROPERTY:apps,INTERFACE_COMPILE_FEATURES> $<TARGET_PROPERTY:framework,INTERFACE_COMPILE_FEATURES>)
|
|
target_compile_definitions(plugins PRIVATE $<TARGET_PROPERTY:apps,INTERFACE_COMPILE_DEFINITIONS> $<TARGET_PROPERTY:framework,INTERFACE_COMPILE_DEFINITIONS>) |