We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d809a7 commit fea7018Copy full SHA for fea7018
1 file changed
include/c++/meson.build
@@ -17,15 +17,13 @@ config_site_header = configure_file(
17
18
config_header = configure_file(
19
input: '__config.in',
20
- output: '__config',
+ output: '__config_base',
21
copy: true
22
)
23
24
-libcpp_config_headers = files(
25
- meson.current_build_dir() + '/__libcpp_config_site',
26
- meson.current_build_dir() + '/__config',
27
-)
+libcpp_config_headers = [config_site_header, config_header]
28
+# This step composes the two headers above
29
generate_libpp_config_header = custom_target(
30
'generate_libpp_config_header',
31
command: [ cat, '@INPUT@' ],
0 commit comments