CMake: Include utils from places that were implicitly dependent on it

These files use functions that are declared in utils.cmake, but were
relying on implicit inclusion from other files.
This commit is contained in:
Andrew Kaster 2025-07-06 09:12:50 -06:00 committed by Jelle Raaijmakers
commit 12dd5f0804
Notes: github-actions[bot] 2025-07-07 07:11:41 +00:00
2 changed files with 3 additions and 0 deletions

View file

@ -1,3 +1,5 @@
include(${CMAKE_CURRENT_LIST_DIR}/utils.cmake)
function(lagom_generate_export_header name fs_name)
# Temporary helper to allow libraries to opt-in to using X_API macros
# to export symbols required by external consumers. This allows the codebase

View file

@ -1,4 +1,5 @@
include(clang_development)
include(utils)
function(clang_plugin target_name)
cmake_parse_arguments(CLANG_PLUGIN "" "" "SOURCES" ${ARGN})