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.
14 lines
647 B
14 lines
647 B
4 years ago
|
find_package(PkgConfig)
|
||
|
|
||
|
set(foobar_LDFLAGS_OTHER "-Wl,xy;-framework;bar;-Wl,other-framework;-framework;baz;-Wl,abc;-framework;gosh;-frameworkcrap;-frame;j;-framework;nix;-Wl,def")
|
||
|
set(foobar_LIBRARIES "-lz;-lm")
|
||
|
|
||
|
_pkgconfig_extract_frameworks("foobar")
|
||
|
|
||
|
if (NOT foobar_LDFLAGS_OTHER STREQUAL "-Wl,xy;-Wl,other-framework;-Wl,abc;-frameworkcrap;-frame;j;-Wl,def")
|
||
|
message(SEND_ERROR "foobar_LDFLAGS_OTHER did not match: ${foobar_LDFLAGS_OTHER}")
|
||
|
endif ()
|
||
|
if (NOT foobar_LIBRARIES STREQUAL "-lz;-lm;-framework bar;-framework baz;-framework gosh;-framework nix")
|
||
|
message(SEND_ERROR "foobar_LIBRARIES did not match: ${foobar_LIBRARIES}")
|
||
|
endif ()
|