Skip to content

Commit

Permalink
feat(project): add core and language modules
Browse files Browse the repository at this point in the history
Add core and language modules to the project structure for better organization.
  • Loading branch information
phodal committed May 31, 2024
1 parent be1b359 commit 2b4a6f0
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,17 @@ kover {
}
}

project(":core") {
dependencies {
}
}


project(":language") {
dependencies {
}
}

tasks {
wrapper {
gradleVersion = properties("gradleVersion").get()
Expand Down
3 changes: 3 additions & 0 deletions core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# MultiplePlatform with Cross IDE APIs


2 changes: 2 additions & 0 deletions language/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# theShire Language and Compiler

9 changes: 8 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
rootProject.name = "shire"

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

rootProject.name = "shire"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

include(
"core",
"language",
)

0 comments on commit 2b4a6f0

Please sign in to comment.