#Specifying the target OS for cross platform compilation

4 messages · Page 1 of 1 (latest)

vernal lark
#

I am using conditional compilation to change how a few of my functions work depending on the platform, but the tauri starter for windows has ```rust
#![cfg_attr(
all(not(debug_assertions), target_os = "windows"),
windows_subsystem = "windows"
)]

vernal lark
#

was able to solve this by simply removing the code above

prime kiln