mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
10 lines
272 B
Makefile
10 lines
272 B
Makefile
include ../tools.mk
|
|
|
|
# This test makes sure that files referenced via #[debugger_visualizer] are
|
|
# included in `--emit dep-info` output.
|
|
|
|
all:
|
|
$(RUSTC) --emit dep-info main.rs
|
|
$(CGREP) "foo.py" < $(TMPDIR)/main.d
|
|
$(CGREP) "my_visualizers/bar.natvis" < $(TMPDIR)/main.d
|