Skip to content

Commit 78e65b7

Browse files
committed
Remove include path used for testing
1 parent 1ea4a9b commit 78e65b7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ fn main() {
1515
let flags = String::from_utf8(pkg.stdout).unwrap();
1616
let flags = flags.split(" ");
1717
let mut config = cpp_build::Config::new();
18-
config
19-
.flag("-std=c++14")
20-
.include("/opt/homebrew/Cellar/openimageio/2.3.17.0/include");
18+
config.flag("-std=c++14");
2119

2220
for flag in flags {
2321
config.flag(flag);

0 commit comments

Comments
 (0)