CommonizerIT: Mark Windows as non-executable target

This commit is contained in:
sebastian.sellmair
2021-03-17 10:10:16 +01:00
committed by Space
parent 5a35018a88
commit f4b840467f
@@ -231,7 +231,7 @@ private object CommonizableTargets {
val targetA = when {
os.isMacOsX -> TargetSubstitution("macosX64", isCompilable = true, isExecutable = true)
os.isLinux -> TargetSubstitution("linuxX64", isCompilable = true, isExecutable = true)
os.isWindows -> TargetSubstitution("mingwX64", isCompilable = true, isExecutable = true)
os.isWindows -> TargetSubstitution("mingwX64", isCompilable = true, isExecutable = false)
else -> fail("Unsupported os: ${os.name}")
}