ladybird/Applications/Browser/CMakeLists.txt
FalseHonesty 391237a8e1 Browser: Add JS Console
The JavaScript console can be opened with Control+I, or using
the menu option. The console is currently a text box with JS
syntax highlighting which will send commands to the document's
interpreter. All output is printed to an HTML view in the console.
The output is an HtmlView to easily allow complex output, such
as expandable views for JS Objects in the long run.
2020-05-24 02:20:08 +02:00

14 lines
266 B
CMake

set(SOURCES
BookmarksBarWidget.cpp
BrowserConsoleClient.cpp
ConsoleWidget.cpp
DownloadWidget.cpp
InspectorWidget.cpp
main.cpp
Tab.cpp
WindowActions.cpp
)
serenity_bin(Browser)
target_link_libraries(Browser LibWeb LibProtocol LibGUI)