spierce7
07/16/2018, 1:06 AMmsink
07/16/2018, 2:52 AMkonanArtifacts {
program('table', targets: ['linux', 'mingw']) {
//TODO: reenable macos when uiImage will be fixed
srcDir 'src/main/kotlin'
srcDir 'src/main/resources'
libraries {
artifact project(':libui-ktx'), 'libui-ktx'
}
target('mingw') {
dependsOn 'windowsResources'
inputs.file resFile
linkerOpts "$resFile -mwindows"
}
}
}
spierce7
07/16/2018, 3:46 AMsrcDir
specified. Let me try.spierce7
07/16/2018, 3:49 AMsrcDir
did the trick. Thank you! I must have gotten lucky with it somehow finding my Main.kt
file. Perhaps it looks for a file named main by default or something