added studio components

This commit is contained in:
bQUARKz 2026-03-11 11:12:46 +00:00
parent cb786c2663
commit e739fc7d98
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8
3 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,7 @@
# Prometeu Studio Components
This module is the future home of reusable JavaFX components for `prometeu-studio`.
It is intentionally empty for now.
Components should only be added here when they are needed by the current Studio UI wave.

View File

@ -0,0 +1,13 @@
plugins {
id("gradle.java-library-conventions")
alias(libs.plugins.javafx)
}
dependencies {
api(libs.javafx.controls)
}
javafx {
version = libs.versions.javafx.get()
modules("javafx.controls")
}

View File

@ -5,6 +5,7 @@ plugins {
rootProject.name = "prometeu-studio"
include("prometeu-infra")
include("prometeu-studio-components")
include("prometeu-compiler:frontends:prometeu-frontend-pbs")
include("prometeu-compiler:prometeu-compiler-core")
@ -13,4 +14,4 @@ include("prometeu-compiler:prometeu-deps")
include("prometeu-compiler:prometeu-frontend-api")
include("prometeu-compiler:prometeu-frontend-registry")
include("prometeu-studio")
include("prometeu-studio")