summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--talpid-core/build.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/talpid-core/build.rs b/talpid-core/build.rs
index 8c5c74911b..b46304d5a0 100644
--- a/talpid-core/build.rs
+++ b/talpid-core/build.rs
@@ -69,6 +69,10 @@ fn main() {
let link_type = match target_os.as_str() {
"android" => "",
"linux" | "macos" => "=static",
+ // We would like to avoid panicing on windows even if we can not link correctly
+ // because we would like to be able to run check and clippy.
+ // This does not allow for correct linking or building.
+ "windows" => "",
_ => panic!("Unsupported platform: {}", target_os),
};