Add include path when compiling profiler runtime

InstrProfData.inc has been moved to include/
This commit is contained in:
Nikita Popov 2020-01-04 00:13:25 +01:00
parent b27b1d8efc
commit 3db0015499

View file

@ -72,6 +72,7 @@ fn main() {
cfg.file(root.join("lib").join("profile").join(src));
}
cfg.include(root.join("include"));
cfg.warnings(false);
cfg.compile("profiler-rt");
}