You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
project('dependency factory')
|
|
|
|
|
|
|
|
dep = dependency('gl', method: 'pkg-config', required: false)
|
|
|
|
if dep.found() and dep.type_name() == 'pkgconfig'
|
|
|
|
dep.get_pkgconfig_variable('prefix')
|
|
|
|
endif
|
|
|
|
|
|
|
|
dep = dependency('SDL2', method: 'pkg-config', required: false)
|
|
|
|
if dep.found() and dep.type_name() == 'pkgconfig'
|
|
|
|
dep.get_pkgconfig_variable('prefix')
|
|
|
|
endif
|
|
|
|
|
|
|
|
dep = dependency('SDL2', method: 'config-tool', required: false)
|
|
|
|
if dep.found() and dep.type_name() == 'configtool'
|
|
|
|
dep.get_configtool_variable('prefix')
|
|
|
|
endif
|
|
|
|
|
|
|
|
dep = dependency('Vulkan', method: 'pkg-config', required: false)
|
|
|
|
if dep.found() and dep.type_name() == 'pkgconfig'
|
|
|
|
dep.get_pkgconfig_variable('prefix')
|
|
|
|
endif
|