Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. plugins {
  2. id 'org.jetbrains.kotlin.multiplatform' version '1.3.61'
  3. }
  4. repositories {
  5. mavenCentral()
  6. }
  7. kotlin {
  8.  
  9. // For ARM, should be changed to iosArm32 or iosArm64
  10. // For Linux, should be changed to e.g. linuxX64
  11. // For MacOS, should be changed to e.g. macosX64
  12. // For Windows, should be changed to e.g. mingwX64
  13. mingwX64("mingw") {
  14. binaries {
  15. executable {
  16. // Change to specify fully qualified name of your application's entry point:
  17. entryPoint = 'sample.main'
  18. // Specify command-line arguments, if necessary:
  19. runTask?.args('')
  20. }
  21. }
  22. }
  23. sourceSets {
  24. // Note: To enable common source sets please comment out 'kotlin.import.noCommonSourceSets' property
  25. // in gradle.properties file and re-import your project in IDE.
  26. mingwMain {
  27. }
  28. mingwTest {
  29. }
  30. }
  31. }
  32.  
  33. // Use the following Gradle tasks to run your application:
  34. // :runReleaseExecutableMingw - without debug symbols
  35. // :runDebugExecutableMingw - with debug symbols
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement