mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 16:16:43 +00:00
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:
parent
0cd5c6bd0f
commit
582539c570
Notes:
sideshowbarker
2024-07-19 17:06:04 +09:00
Author: https://github.com/dykatz
Commit: 582539c570
Pull-request: https://github.com/SerenityOS/serenity/pull/13582
Reviewed-by: https://github.com/bgianfo
Reviewed-by: https://github.com/kleinesfilmroellchen
Reviewed-by: https://github.com/linusg
7 changed files with 608 additions and 0 deletions
14
Userland/DevTools/SQLStudio/CMakeLists.txt
Normal file
14
Userland/DevTools/SQLStudio/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue