114b11b2bSmrg# Copyright © 2018 Intel Corporation 214b11b2bSmrg 314b11b2bSmrg# Permission is hereby granted, free of charge, to any person obtaining a copy 414b11b2bSmrg# of this software and associated documentation files (the "Software"), to deal 514b11b2bSmrg# in the Software without restriction, including without limitation the rights 614b11b2bSmrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 714b11b2bSmrg# copies of the Software, and to permit persons to whom the Software is 814b11b2bSmrg# furnished to do so, subject to the following conditions: 914b11b2bSmrg 1014b11b2bSmrg# The above copyright notice and this permission notice shall be included in 1114b11b2bSmrg# all copies or substantial portions of the Software. 1214b11b2bSmrg 1314b11b2bSmrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1414b11b2bSmrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1514b11b2bSmrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 1614b11b2bSmrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 1714b11b2bSmrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 1814b11b2bSmrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 1914b11b2bSmrg# SOFTWARE. 2014b11b2bSmrg 2114b11b2bSmrglibtestutils = static_library( 2214b11b2bSmrg 'testutils', 2314b11b2bSmrg ['utils.c', 'utils-prng.c', config_h], 2414b11b2bSmrg dependencies : [idep_pixman, dep_openmp, dep_m, dep_png], 2514b11b2bSmrg) 2614b11b2bSmrg 2714b11b2bSmrglibtestutils_dep = declare_dependency( 2814b11b2bSmrg link_with: libtestutils, 2914b11b2bSmrg include_directories: include_directories('.'), 3014b11b2bSmrg) 3114b11b2bSmrg 32