cpp_cmake_dependencies.model_dependencies_cmake.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-module-creator Show documentation
Show all versions of kurento-module-creator Show documentation
Tool that generates code for RPC between the Kurento Media Server
and remote libraries.
${module.name}Dependencies.cmake
<#assign name>${module.code.implementation.lib?replace("lib", "")?upper_case}#assign>
# Autogenerated with kurento-module-creator
cmake_minimum_required(VERSION 2.8)
include (GenericFind)
###############################################################
# Dependencies
###############################################################
<#list module.imports as import>
# looking for ${import.name} dependencies
generic_find (
REQUIRED
LIBNAME ${import.module.code.implementation.lib?replace("lib", "")?upper_case}
VERSION ${import.version}
)
#list>
set (${name}_DEPENDENCIES_LIBRARIES
<#list module.imports as import>
<#noparse>${#noparse>${import.module.code.implementation.lib?replace("lib", "")?upper_case}_LIBRARIES<#noparse>}#noparse>
#list>
CACHE INTERNAL "Model library dependencies"
)
set (${name}_DEPENDENCIES_INCLUDE_DIRS
<#list module.imports as import>
<#noparse>${#noparse>${import.module.code.implementation.lib?replace("lib", "")?upper_case}_INCLUDE_DIRS<#noparse>}#noparse>
#list>
CACHE INTERNAL "Model library dependencies"
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy