File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,5 @@ m4_if(m4_version_compare([2.61a.100],
104
104
[ GNUmakefile=$GNUmakefile] ) ] )
105
105
106
106
AC_CONFIG_FILES ( [ \
107
- Makefile \
108
- .color_coded \
109
- .ycm_extra_conf.py] )
107
+ Makefile] )
110
108
AC_OUTPUT
Original file line number Diff line number Diff line change @@ -2326,6 +2326,25 @@ configure_file(
2326
2326
run_command (' chmod' , ' a+x' , meson .current_build_dir() / ' run' )
2327
2327
2328
2328
2329
+ # generate developer tooling files
2330
+ tooling_files = [
2331
+ ' .color_coded.in' ,
2332
+ ' .ycm_extra_conf.py.in' ,
2333
+ ]
2334
+
2335
+ tooling_conf = configuration_data ()
2336
+ tooling_conf.set(' abs_top_builddir' , meson .build_root())
2337
+ tooling_conf.set(' abs_top_srcdir' , meson .source_root())
2338
+
2339
+ foreach file : tooling_files
2340
+ configure_file (
2341
+ input : file,
2342
+ output : ' @BASENAME@' ,
2343
+ configuration : tooling_conf,
2344
+ )
2345
+ endforeach
2346
+
2347
+
2329
2348
# print configuration summary
2330
2349
2331
2350
driver_summary = {
You can’t perform that action at this time.
0 commit comments