summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/sw/hgl
diff options
context:
space:
mode:
authorAlexander von Gluck IV <[email protected]>2018-02-16 16:56:31 -0600
committerAlexander von Gluck IV <[email protected]>2018-02-16 16:56:34 -0600
commit834d221512fae8dd290d347fec071c4adbe140ed (patch)
treefc12d7bd18f90dd2909e9c9399081f92701804b5 /src/gallium/winsys/sw/hgl
parent7b283544dc76efe5216120b178574ff561605e23 (diff)
meson: Add Haiku platform support v4
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/gallium/winsys/sw/hgl')
-rw-r--r--src/gallium/winsys/sw/hgl/meson.build29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/gallium/winsys/sw/hgl/meson.build b/src/gallium/winsys/sw/hgl/meson.build
new file mode 100644
index 00000000000..8901096bd12
--- /dev/null
+++ b/src/gallium/winsys/sw/hgl/meson.build
@@ -0,0 +1,29 @@
+# Copyright © 2017 Dylan Baker
+
+# 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.
+
+libswhgl = static_library(
+ 'swhgl',
+ files('hgl_sw_winsys.c'),
+ c_args : c_vis_args,
+ include_directories : [inc_gallium, inc_include, inc_src, inc_gallium_aux,
+ include_directories('../../../state_trackers/hgl')
+ ],
+ build_by_default : false,
+)