win32 sample: gradle build
This commit is contained in:
@@ -13,4 +13,5 @@ include ':tensorflow'
|
||||
// include ':androidNativeActivity'
|
||||
include ':objc'
|
||||
include ':uikit'
|
||||
include ':win32'
|
||||
includeBuild '../'
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# WIN32 Hello World
|
||||
|
||||
To build use `..\gradlew build` or `build.bat`.
|
||||
|
||||
To run use `..\gradlew run` or `MessageBox.exe`.
|
||||
@@ -0,0 +1,9 @@
|
||||
apply plugin: 'konan'
|
||||
|
||||
konan.targets = ['mingw']
|
||||
|
||||
konanArtifacts {
|
||||
program('MessageBox') {
|
||||
linkerOpts "-Wl,--subsystem,windows"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user