Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Added DISABLED_EXTRA_KORGE_LIBS env variable to disable building some…
Browse files Browse the repository at this point in the history
… extra libs
  • Loading branch information
soywiz-invideo committed Feb 16, 2022
1 parent aba5cb3 commit 2495447
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,25 @@ include(":korinject")
include(":kmem")
include(":kds")
include(":korma")
include(":luak")
include(":krypto")
include(":korte")
include(":korio")
include(":korim")
include(":korau")
include(":korgw")
include(":korvi")
include(":kbox2d")
include(":korge")
include(":korge-dragonbones")
include(":korge-spine")
include(":korge-swf")
include(":korge-box2d")
include(":korge-gradle-plugin")

if (System.getenv("DISABLED_EXTRA_KORGE_LIBS") != "true") {
include(":luak")
include(":kbox2d")
include(":korge-dragonbones")
include(":korge-spine")
include(":korge-swf")
include(":korge-box2d")
include(":korge-gradle-plugin")
}

//include(":tensork")
//include(":samples:parallax-scrolling-aseprite")
//include(":samples:tiled-background")
Expand Down

0 comments on commit 2495447

Please sign in to comment.