From 5424d37e388fbc68343d05acffaed29b7698dd9c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 27 May 2023 12:44:32 -0400 Subject: Use files() for headers in meson --- include/meson.build | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/meson.build') diff --git a/include/meson.build b/include/meson.build index 00d4aed..20b056f 100644 --- a/include/meson.build +++ b/include/meson.build @@ -1,7 +1,7 @@ # Copyright 2021-2023 David Robillard # SPDX-License-Identifier: 0BSD OR ISC -c_headers = [ +c_headers = files( 'pugl/attributes.h', 'pugl/pugl.h', @@ -10,8 +10,6 @@ c_headers = [ 'pugl/glu.h', 'pugl/stub.h', 'pugl/vulkan.h', -] - -c_header_files = files(c_headers) +) install_headers(c_headers, subdir: versioned_name / 'pugl') -- cgit v1.2.1