
SQL Studio is a graphical SQL manager program that allows the user to create and edit SQL scripts.
14 lines
261 B
CMake
14 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)
|