let's separate Android from not Android

This commit is contained in:
rusefillc 2022-10-15 19:27:33 -04:00
parent fa82ae829c
commit f99eb8462e
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,17 @@
plugins {
id 'java'
}
// that git submodule uses non gralde folder structure so here we are hacking things
sourceSets {
main {
java {
srcDir '../luaformatter/src'
}
}
test {
java {
srcDir '../luaformatter/test'
}
}
}

View File

@ -41,4 +41,4 @@ project(':autotest').projectDir = new File('../java_console/autotest')
include ':ui'
project(':ui').projectDir = new File('../java_console/ui')
include ':luaformatter'
project(':luaformatter').projectDir = new File('../java_console/luaformatter')
project(':luaformatter').projectDir = new File('../java_console/luaformatter_module')