diff options
author | Ignacio Casal Quinteiro <qignacio@amazon.com> | 2019-03-11 15:18:07 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2019-03-11 17:38:22 +0000 |
commit | c6f84a223cffb95b272dbd15b74a6caf81c72fb0 (patch) | |
tree | 53fd8842d7cc7134de6cc6109c89f3203d6a1088 /test cases | |
parent | ca34b0af70f2827d45e9b372118718400f698b3a (diff) | |
download | meson-c6f84a223cffb95b272dbd15b74a6caf81c72fb0.zip meson-c6f84a223cffb95b272dbd15b74a6caf81c72fb0.tar.gz meson-c6f84a223cffb95b272dbd15b74a6caf81c72fb0.tar.bz2 |
Add unit test for pkgconfig relative paths
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/unit/58 pkgconfig relative paths/pkgconfig/librelativepath.pc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/unit/58 pkgconfig relative paths/pkgconfig/librelativepath.pc b/test cases/unit/58 pkgconfig relative paths/pkgconfig/librelativepath.pc new file mode 100644 index 0000000..dae1eed --- /dev/null +++ b/test cases/unit/58 pkgconfig relative paths/pkgconfig/librelativepath.pc @@ -0,0 +1,9 @@ +prefix=../relativepath +exec_prefix=${prefix} +libdir=${exec_prefix}/lib + +Name: Relative path +Description: Relative path library +Version: 0.0.1 +Libs: -L${libdir} -lrelativepath +Cflags: |