diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-06-14 01:47:08 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-14 01:45:04 +0100 |
commit | e4d267d4fbd0d12ee88d395f4c17e2e73a88b264 (patch) | |
tree | 1b910f8d3d689d06e4953282ad562d3470ca8f90 /Userland/Libraries/LibJS/CMakeLists.txt | |
parent | 5b2255291edc4761869f30b067404139fc0268b6 (diff) | |
download | serenity-e4d267d4fbd0d12ee88d395f4c17e2e73a88b264.zip |
LibJS: Add the DataView built-in object
Diffstat (limited to 'Userland/Libraries/LibJS/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibJS/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/CMakeLists.txt b/Userland/Libraries/LibJS/CMakeLists.txt index 0e2bb053eb..7838999228 100644 --- a/Userland/Libraries/LibJS/CMakeLists.txt +++ b/Userland/Libraries/LibJS/CMakeLists.txt @@ -37,6 +37,9 @@ set(SOURCES Runtime/BooleanPrototype.cpp Runtime/BoundFunction.cpp Runtime/ConsoleObject.cpp + Runtime/DataView.cpp + Runtime/DataViewConstructor.cpp + Runtime/DataViewPrototype.cpp Runtime/DateConstructor.cpp Runtime/Date.cpp Runtime/DatePrototype.cpp |