Properly exclude Windows

This commit is contained in:
Kirill Bulatov 2024-11-01 18:21:11 +02:00
parent 0ee75caacc
commit a296553df6

View File

@ -21,9 +21,9 @@ use webrtc::{
video_stream::native::NativeVideoStream,
};
#[cfg(not(any(test, feature = "test-support", target_os = windows)))]
#[cfg(all(not(any(test, feature = "test-support")), not(target_os = "windows")))]
pub use livekit::*;
#[cfg(any(test, feature = "test-support", target_os = windows))]
#[cfg(any(test, feature = "test-support", target_os = "windows"))]
pub use test::*;
pub use remote_video_track_view::{RemoteVideoTrackView, RemoteVideoTrackViewEvent};