build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. apply plugin: 'application'
  2. sourceSets.main.resources.srcDirs += [ rootProject.file('assets').path ]
  3. mainClassName = 'com.simple.tetriscompetitive.lwjgl3.Lwjgl3Launcher'
  4. eclipse.project.name = appName + '-lwjgl3'
  5. sourceCompatibility = 8.0
  6. dependencies {
  7. implementation project(':core')
  8. implementation "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
  9. implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
  10. implementation "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
  11. }
  12. import org.gradle.internal.os.OperatingSystem
  13. run {
  14. workingDir = rootProject.file('assets').path
  15. setIgnoreExitValue(true)
  16. if (OperatingSystem.current() == OperatingSystem.MAC_OS) {
  17. // Required to run LWJGL3 Java apps on MacOS
  18. jvmArgs += "-XstartOnFirstThread"
  19. }
  20. }
  21. jar {
  22. archiveBaseName = appName
  23. dependsOn configurations.runtimeClasspath
  24. from {
  25. configurations.runtimeClasspath.collect {
  26. it.isDirectory() ? it : zipTree(it)
  27. }
  28. }
  29. manifest {
  30. attributes 'Main-Class': project.mainClassName
  31. }
  32. doLast {
  33. file(archivePath).setExecutable(true, false)
  34. }
  35. }