Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
346 views
in Technique[技术] by (71.8m points)

meson: How to execute a run_command prior to building a target?

I have a meson custom_target that builds a docker. Before it runs, I would like to remove some files. However, I cannot use a run_command in the depends: section. e.g. I'd like to add a 'clean_target' along with 'devbase' below. Is there a way to do that?

                 , output : meson.project_name() + '.iid'
                 , input : dev_docker_file
                 , depends : [devbase]
                 , command : [docker, 'build'
                        , '--tag', dev_tag
                        , '--iidfile', '@OUTPUT@'
                        , '--file', dev_docker_file
                        , meson.source_root()]
                 , console : true)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can try to create another custom_target and add result (dependency object) to depends: :

clean_dep = custom_target('clean',
                          output : 'clean.done',
                          capture: true,
                          command : ['sh', '-c', 'rm', 'som_file'])

, since generating of some output is required, and then

custom_target('docker',
              ...
              depends : [devbase, clean_dep]
              ...)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...