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.
18 lines
574 B
18 lines
574 B
# Prepare environment to reuse empty.pc
|
|
file(TO_NATIVE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/pc-empty/lib/pkgconfig" PC_PATH)
|
|
if(UNIX)
|
|
string(REPLACE "\\ " " " PC_PATH "${PC_PATH}")
|
|
endif()
|
|
set(ENV{PKG_CONFIG_PATH} "${PC_PATH}")
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_search_module(Empty REQUIRED empty IMPORTED_TARGET)
|
|
|
|
if(NOT Empty_MODULE_NAME STREQUAL "empty")
|
|
message(FATAL_ERROR "Wrong value for Empty_MODULE_NAME. Expected: empty, got: ${Empty_MODULE_NAME}")
|
|
endif()
|
|
|
|
if(NOT TARGET PkgConfig::Empty)
|
|
message(FATAL_ERROR "PkgConfig::Empty target not created")
|
|
endif()
|