All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cpp_cmake_dependencies.model_dependencies_cmake.ftl Maven / Gradle / Ivy

Go to download

Tool that generates code for RPC between the Kurento Media Server and remote libraries.

There is a newer version: 7.1.0
Show newest version
${module.name}Dependencies.cmake
<#assign name>${module.code.implementation.lib?replace("lib", "")?upper_case}
# 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}
)


set (${name}_DEPENDENCIES_LIBRARIES
<#list module.imports as import>
  <#noparse>${${import.module.code.implementation.lib?replace("lib", "")?upper_case}_LIBRARIES<#noparse>}

  CACHE INTERNAL "Model library dependencies"
)

set (${name}_DEPENDENCIES_INCLUDE_DIRS
<#list module.imports as import>
  <#noparse>${${import.module.code.implementation.lib?replace("lib", "")?upper_case}_INCLUDE_DIRS<#noparse>}

  CACHE INTERNAL "Model library dependencies"
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy