This website requires JavaScript.
Explore
Help
Sign In
intercal
/
rasp
Watch
1
Star
0
Fork
0
You've already forked rasp
Code
Issues
Pull Requests
Releases
Wiki
Activity
Files
9e82663b2abc7b3c8546b048341475a6f9419473
rasp
/
build.rs
6 lines
86 B
Rust
Raw
Normal View
History
Unescape
Escape
Add rerun_except to root crate Cargo is finding more reasons to do unnecessary rebuilds, so I've added the rerun_except crate to its build.rs as well to ignore .asm files before recompiling. Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-03-09 16:38:41 -04:00
use
rerun_except
::
rerun_except
;
fn
main
(
)
{
Run rustfmt Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-03-09 16:47:38 -04:00
rerun_except
(
&
[
"
*.asm
"
]
)
.
unwrap
(
)
;
Add rerun_except to root crate Cargo is finding more reasons to do unnecessary rebuilds, so I've added the rerun_except crate to its build.rs as well to ignore .asm files before recompiling. Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-03-09 16:38:41 -04:00
}
Reference in New Issue
Copy Permalink