Another question (I already uploaded this to the d...
# kotlin-native
c
Another question (I already uploaded this to the discussions): runDebugExecutableMingwX64 task doesn’t do anything on macOS; I assume it is running the resulting executable without Wine. Is there any way to launch my program with Wine?
e
linkDebugExecutableMingwX64
should build the
.exe
, which you can run with
wine
outside of Gradle
c
I'm actually doing that right now, I just wanted a more convenient way...