aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/106 pkgconfig relocatable with absolute path/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/106 pkgconfig relocatable with absolute path/meson.build')
-rw-r--r--test cases/unit/106 pkgconfig relocatable with absolute path/meson.build15
1 files changed, 15 insertions, 0 deletions
diff --git a/test cases/unit/106 pkgconfig relocatable with absolute path/meson.build b/test cases/unit/106 pkgconfig relocatable with absolute path/meson.build
new file mode 100644
index 0000000..ff21286
--- /dev/null
+++ b/test cases/unit/106 pkgconfig relocatable with absolute path/meson.build
@@ -0,0 +1,15 @@
+project(
+ 'pkgconfig-relocatable-with-absolute-path',
+ version : '1.0',
+ default_options: [
+ 'pkgconfig.relocatable=true',
+ ])
+
+pkgg = import('pkgconfig')
+
+pkgg.generate(
+ name : 'libsimple',
+ version : '1.0',
+ description : 'A simple pkgconfig.',
+ install_dir: get_option('prefix')/'share/misc/pkgconfig',
+)