blob: 218bba6e5e97a26698faf374d0ea268f2257a80e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
include(FindPkgConfig)
function(otr_pkgconfig target)
set(cflags "")
set(includes "")
set(ldflags "")
foreach(i ${ARGN})
set(k pkg-config_${i})
pkg_check_modules(${k} QUIET ${i})
if(${${k}_FOUND})
set(cflags "${cflags} ${${k}_CFLAGS} ")
set(includes ${includes} ${${k}_INCLUDE_DIRS} ${${k}_INCLUDEDIR})
set(ldflags "${ldflags} ${${k}_LDFLAGS} ")
else()
message(FATAL_ERROR "Can't find '${i}'. Please install development files for this package.")
endif()
endforeach()
#message(STATUS "foo | ${cflags} | ${includes} | ${ldflags}")
set_property(TARGET ${target} APPEND_STRING PROPERTY COMPILE_FLAGS " ${cflags}")
target_include_directories(${target} SYSTEM PRIVATE ${includes})
set_property(TARGET ${target} APPEND_STRING PROPERTY LINK_FLAGS " ${ldflags}")
endfunction()
|