1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:37:34 +00:00

Spreadsheet: Start making a spreadsheet application

This commit is contained in:
AnotherTest 2020-08-23 08:25:16 +04:30 committed by Andreas Kling
parent 5b5ba91335
commit a6ebd29aa5
13 changed files with 1183 additions and 5 deletions

View file

@ -0,0 +1,10 @@
set(SOURCES
Spreadsheet.cpp
SpreadsheetModel.cpp
SpreadsheetView.cpp
SpreadsheetWidget.cpp
main.cpp
)
serenity_bin(Spreadsheet)
target_link_libraries(Spreadsheet LibGUI LibJS)