Added tracing to multi_window applications

This commit is contained in:
Bingus 2023-01-13 11:56:28 -08:00
parent f78ccd9af9
commit 790fa3e7a0
No known key found for this signature in database
GPG key ID: 5F84D2AA40A9F170
7 changed files with 94 additions and 36 deletions

View file

@ -51,11 +51,13 @@ pub mod system;
mod error;
mod icon;
mod proxy;
#[cfg(feature = "trace")]
mod profiler;
#[cfg(feature = "application")]
pub use application::Application;
#[cfg(feature = "trace")]
pub use application::Profiler;
pub use profiler::Profiler;
pub use clipboard::Clipboard;
pub use error::Error;
pub use icon::Icon;