diff options
Diffstat (limited to 'cmake/scripts/common')
-rw-r--r-- | cmake/scripts/common/ModuleHelpers.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/scripts/common/ModuleHelpers.cmake b/cmake/scripts/common/ModuleHelpers.cmake index d38e5afe7c..7bd5847974 100644 --- a/cmake/scripts/common/ModuleHelpers.cmake +++ b/cmake/scripts/common/ModuleHelpers.cmake @@ -425,3 +425,10 @@ macro(PATCH_LF_CHECK patch) endif() unset(patch_content_hex) endmacro() + +# Custom property that we can track to allow us to notify to dependency find modules +# that a dependency of that find module is being built, and therefore that higher level +# dependency should also be built regardless of success in lib searches +define_property(TARGET PROPERTY LIB_BUILD + BRIEF_DOCS "This target will be compiling the library" + FULL_DOCS "This target will be compiling the library") |