diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-11 09:37:09 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-08-11 09:37:09 -0400 |
commit | 62d8b252c093b3bd71362b1c76cb70b16a6cd63a (patch) | |
tree | ff109926a2e2e9f4ce8c445cbd8c07e4e9da59ef /util/meson.build | |
parent | a6efb9038219562f65c20c997996b74dffed3910 (diff) |
Refactor meson and move xdg-shell into wlroots
Diffstat (limited to 'util/meson.build')
-rw-r--r-- | util/meson.build | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/util/meson.build b/util/meson.build index 7b80c23f..a66cefce 100644 --- a/util/meson.build +++ b/util/meson.build @@ -1,4 +1,5 @@ -wlr_files += files( - 'list.c', - 'log.c', -) +lib_wlr_util = static_library('wlr_util', files( + 'list.c', + 'log.c', + ), + include_directories: wlr_inc) |