Add macros to make a 2nd pass on required module
[apps/app-templates.git] / cmake / cmake.d / 03-macros.cmake
index 6e223b2..88d6dd4 100644 (file)
@@ -121,6 +121,15 @@ macro(configure_files_in_dir dir)
        endforeach()
 endmacro(configure_files_in_dir)
 
+macro(add_required_module PKG_CONFIG)
+       string(REGEX REPLACE "[<>]?=.*$" "" XPREFIX ${PKG_CONFIG})
+       PKG_CHECK_MODULES(${XPREFIX} REQUIRED ${PKG_CONFIG})
+
+       INCLUDE_DIRECTORIES(${${XPREFIX}_INCLUDE_DIRS})
+       list(APPEND link_libraries ${${XPREFIX}_LDFLAGS})
+       add_compile_options (${${XPREFIX}_CFLAGS})
+endmacro(add_required_module)
+
 # Create custom target dedicated for HTML5 and DATA AGL target type
 macro(add_input_files INPUT_FILES)
        set(XML_LIST ${INPUT_FILES})