diff options
| author | chitranjali <chitranjali189@gmail.com> | 2018-03-23 22:18:27 +0530 |
|---|---|---|
| committer | chitranjali <chitranjali189@gmail.com> | 2018-03-29 13:32:36 +0530 |
| commit | 34cb503c854e9afe2f3e13e9d4a5788c47b830a9 (patch) | |
| tree | bce771ea5d9252b9c701d54ad4b56066ca1d8194 /test cases/unit | |
| parent | 83766313a71e79fd81bc6d89cabdb21f90fc3251 (diff) | |
| download | meson-34cb503c854e9afe2f3e13e9d4a5788c47b830a9.tar.gz | |
PR review changes closes #2865
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/25 shared_mod linking/installed_files.txt | 1 | ||||
| -rw-r--r-- | test cases/unit/25 shared_mod linking/meson.build | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test cases/unit/25 shared_mod linking/installed_files.txt b/test cases/unit/25 shared_mod linking/installed_files.txt deleted file mode 100644 index c7dab9f6f..000000000 --- a/test cases/unit/25 shared_mod linking/installed_files.txt +++ /dev/null @@ -1 +0,0 @@ -usr/bin/prog?exe diff --git a/test cases/unit/25 shared_mod linking/meson.build b/test cases/unit/25 shared_mod linking/meson.build index d8934e948..2df16fc49 100644 --- a/test cases/unit/25 shared_mod linking/meson.build +++ b/test cases/unit/25 shared_mod linking/meson.build @@ -1,6 +1,5 @@ project('shared library linking test', 'c', 'cpp') -lib = shared_module('mylib', - 'libfile.c' # Split to different lines before and after the comma to test parser. - , install : false) # Don't install libraries in common tests; the path is platform-specific +lib = shared_module('mylib', 'libfile.c') + exe = executable('prog', 'main.c', link_with : lib, install : true)
\ No newline at end of file |
