ladybird/Userland/DevTools/SQLStudio/CMakeLists.txt
Dylan Katz 582539c570 DevTools: Introduce SQL Studio
SQL Studio is a graphical SQL manager program that allows the user
to create and edit SQL scripts.
2022-04-22 09:57:40 +02:00

15 lines
261 B
CMake

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)