summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/etnaviv
diff options
context:
space:
mode:
authorDylan Baker <[email protected]>2017-10-20 15:45:22 -0700
committerDylan Baker <[email protected]>2017-10-23 11:45:38 -0700
commit51558a1d6ca43b201362b3b64c751cfc93584346 (patch)
treef6c26a256f2e48919d0707d8b6e369362cad7dbd /src/gallium/winsys/etnaviv
parentba85525fcec65e021304a7ecd21e8fd20ce39f2d (diff)
meson: build etnaviv driver + winsys
Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Christian Gmeiner <[email protected]>
Diffstat (limited to 'src/gallium/winsys/etnaviv')
-rw-r--r--src/gallium/winsys/etnaviv/drm/meson.build28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/gallium/winsys/etnaviv/drm/meson.build b/src/gallium/winsys/etnaviv/drm/meson.build
new file mode 100644
index 00000000000..21bb6f67567
--- /dev/null
+++ b/src/gallium/winsys/etnaviv/drm/meson.build
@@ -0,0 +1,28 @@
+# Copyright © 2017 Intel Corporation
+
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+
+libetnavivdrm = static_library(
+ 'etnavivdrm',
+ 'etnaviv_drm_winsys.c',
+ include_directories : [
+ inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_gallium_drivers
+ ],
+ dependencies : dep_libdrm_etnaviv
+)