summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/FindPkgConfig/FindPkgConfig_extract_frameworks.cmake
blob: fde886d56750b4c54f7f22059d281da22fb19e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 ()