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.
10 lines
378 B
10 lines
378 B
9 years ago
|
find_package(PkgConfig REQUIRED)
|
||
|
pkg_check_modules(GOBJECT_INTROSPECTION QUIET gobject-introspection-1.0)
|
||
|
|
||
|
if (GOBJECT_INTROSPECTION_FOUND)
|
||
|
pkg_get_variable(g_ir_scanner gobject-introspection-1.0 g_ir_scanner)
|
||
|
message(STATUS "g_ir_scanner: ${g_ir_scanner}")
|
||
|
else ()
|
||
|
message(STATUS "g_ir_scanner: skipping test; gobject-introspection-1.0 not found /g-ir-scanner")
|
||
|
endif ()
|