You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
988 B
29 lines
988 B
4 months ago
|
/*
|
||
|
* Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* This is a hack to avoid creating unsupported native source sets when importing project into IDEA
|
||
|
*/
|
||
|
project.ext.ideaActive = System.getProperty('idea.active') == 'true'
|
||
|
|
||
|
kotlin {
|
||
|
targets {
|
||
|
def manager = project.ext.hostManager
|
||
|
def linuxEnabled = manager.isEnabled(presets.linuxX64.konanTarget)
|
||
|
def macosEnabled = manager.isEnabled(presets.macosX64.konanTarget)
|
||
|
def winEnabled = manager.isEnabled(presets.mingwX64.konanTarget)
|
||
|
|
||
|
project.ext.isLinuxHost = linuxEnabled
|
||
|
project.ext.isMacosHost = macosEnabled
|
||
|
project.ext.isWinHost = winEnabled
|
||
|
|
||
|
if (project.ext.ideaActive) {
|
||
|
def ideaPreset = presets.linuxX64
|
||
|
if (winEnabled) ideaPreset = presets.mingwX64
|
||
|
if (macosEnabled) ideaPreset = presets.macosX64
|
||
|
project.ext.ideaPreset = ideaPreset
|
||
|
}
|
||
|
}
|
||
|
}
|