DevTools: Introduce SQL Studio

SQL Studio is a graphical SQL manager program that allows the user
to create and edit SQL scripts.
This commit is contained in:
Dylan Katz 2022-04-08 20:24:37 -07:00 committed by Linus Groh
commit 582539c570
Notes: sideshowbarker 2024-07-19 17:06:04 +09:00
7 changed files with 608 additions and 0 deletions

View file

@ -0,0 +1,14 @@
serenity_component(
SQLStudio
RECOMMENDED
TARGETS SQLStudio
)
set(SOURCES
main.cpp
MainWidget.cpp
ScriptEditor.cpp
)
serenity_app(SQLStudio ICON app-sql-studio)
target_link_libraries(SQLStudio LibCore LibDesktop LibGUI LibMain LibSQL)