Blame tests/proptest/meson.build

Packit 631bab
# Copyright © 2017 Intel Corporation
Packit 631bab
Packit 631bab
# Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 631bab
# of this software and associated documentation files (the "Software"), to deal
Packit 631bab
# in the Software without restriction, including without limitation the rights
Packit 631bab
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Packit 631bab
# copies of the Software, and to permit persons to whom the Software is
Packit 631bab
# furnished to do so, subject to the following conditions:
Packit 631bab
Packit 631bab
# The above copyright notice and this permission notice shall be included in
Packit 631bab
# all copies or substantial portions of the Software.
Packit 631bab
Packit 631bab
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Packit 631bab
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Packit 631bab
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Packit 631bab
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Packit 631bab
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Packit 631bab
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit 631bab
# SOFTWARE.
Packit 631bab
Packit 631bab
proptest = executable(
Packit 631bab
  'proptest',
Packit 631bab
  files('proptest.c'),
Packit 631bab
  c_args : libdrm_c_args,
Packit 631bab
  include_directories : [inc_root, inc_tests, inc_drm],
Packit 631bab
  link_with : [libdrm, libutil],
Packit 631bab
  install : with_install_tests,
Packit 631bab
)