From 69ac04cf10427f02e1af2a25ee0995ee62d9dcd3 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Tue, 24 Sep 2024 09:25:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20`cfg(not(feature=20=3D=20"download-binar?= =?UTF-8?q?ies"))`=E3=81=AE=E3=83=93=E3=83=AB=E3=83=89=E3=82=92=E7=9B=B4?= =?UTF-8?q?=E3=81=99=20(#9)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ort-sys/src/internal/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ort-sys/src/internal/mod.rs b/ort-sys/src/internal/mod.rs index c13a982e..7516f3c7 100644 --- a/ort-sys/src/internal/mod.rs +++ b/ort-sys/src/internal/mod.rs @@ -1,3 +1,4 @@ pub mod dirs; +#[cfg(feature = "download-binaries")] include!(concat!(env!("OUT_DIR"), "/downloaded_version.rs"));