Updated scripts to match the proper SDL backend name

This commit is contained in:
Anuken
2026-02-13 11:06:24 -05:00
parent 0aa091b212
commit 03bea6b291
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ buildscript{
ext{
arcHash = property("archash")
localArc = !project.hasProperty("release") && new File(rootDir.parent, 'Arc').exists() && !project.hasProperty("noLocalArc")
localArc = new File(rootDir.parent, 'Arc').exists() && !project.hasProperty("noLocalArc")
arcModule = { String name ->
//skip to last submodule
@@ -253,7 +253,7 @@ project(":desktop"){
implementation "com.github.Anuken:steamworks4j:$steamworksVersion"
implementation arcModule("backends:backend-sdl3")
implementation arcModule("backends:backend-sdl")
annotationProcessor 'com.github.Anuken:jabel:0.9.0'
}
}