mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:27:34 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
parent
dc28c07fa5
commit
13d7c09125
1857 changed files with 266 additions and 274 deletions
88
Userland/Libraries/LibJS/CMakeLists.txt
Normal file
88
Userland/Libraries/LibJS/CMakeLists.txt
Normal file
|
@ -0,0 +1,88 @@
|
|||
set(SOURCES
|
||||
AST.cpp
|
||||
Console.cpp
|
||||
Heap/Allocator.cpp
|
||||
Heap/Handle.cpp
|
||||
Heap/HeapBlock.cpp
|
||||
Heap/Heap.cpp
|
||||
Interpreter.cpp
|
||||
Lexer.cpp
|
||||
MarkupGenerator.cpp
|
||||
Parser.cpp
|
||||
Runtime/Array.cpp
|
||||
Runtime/ArrayBuffer.cpp
|
||||
Runtime/ArrayBufferConstructor.cpp
|
||||
Runtime/ArrayBufferPrototype.cpp
|
||||
Runtime/ArrayConstructor.cpp
|
||||
Runtime/ArrayIterator.cpp
|
||||
Runtime/ArrayIteratorPrototype.cpp
|
||||
Runtime/ArrayPrototype.cpp
|
||||
Runtime/BigInt.cpp
|
||||
Runtime/BigIntConstructor.cpp
|
||||
Runtime/BigIntObject.cpp
|
||||
Runtime/BigIntPrototype.cpp
|
||||
Runtime/BooleanConstructor.cpp
|
||||
Runtime/BooleanObject.cpp
|
||||
Runtime/BooleanPrototype.cpp
|
||||
Runtime/BoundFunction.cpp
|
||||
Runtime/Cell.cpp
|
||||
Runtime/ConsoleObject.cpp
|
||||
Runtime/DateConstructor.cpp
|
||||
Runtime/Date.cpp
|
||||
Runtime/DatePrototype.cpp
|
||||
Runtime/ErrorConstructor.cpp
|
||||
Runtime/Error.cpp
|
||||
Runtime/ErrorPrototype.cpp
|
||||
Runtime/ErrorTypes.cpp
|
||||
Runtime/Exception.cpp
|
||||
Runtime/FunctionConstructor.cpp
|
||||
Runtime/Function.cpp
|
||||
Runtime/FunctionPrototype.cpp
|
||||
Runtime/GlobalObject.cpp
|
||||
Runtime/IndexedProperties.cpp
|
||||
Runtime/IteratorOperations.cpp
|
||||
Runtime/IteratorPrototype.cpp
|
||||
Runtime/JSONObject.cpp
|
||||
Runtime/LexicalEnvironment.cpp
|
||||
Runtime/MarkedValueList.cpp
|
||||
Runtime/MathObject.cpp
|
||||
Runtime/NativeFunction.cpp
|
||||
Runtime/NativeProperty.cpp
|
||||
Runtime/NumberConstructor.cpp
|
||||
Runtime/NumberObject.cpp
|
||||
Runtime/NumberPrototype.cpp
|
||||
Runtime/ObjectConstructor.cpp
|
||||
Runtime/Object.cpp
|
||||
Runtime/ObjectPrototype.cpp
|
||||
Runtime/PrimitiveString.cpp
|
||||
Runtime/ProxyConstructor.cpp
|
||||
Runtime/ProxyObject.cpp
|
||||
Runtime/Reference.cpp
|
||||
Runtime/ReflectObject.cpp
|
||||
Runtime/RegExpConstructor.cpp
|
||||
Runtime/RegExpObject.cpp
|
||||
Runtime/RegExpPrototype.cpp
|
||||
Runtime/ScopeObject.cpp
|
||||
Runtime/ScriptFunction.cpp
|
||||
Runtime/Shape.cpp
|
||||
Runtime/StringConstructor.cpp
|
||||
Runtime/StringIterator.cpp
|
||||
Runtime/StringIteratorPrototype.cpp
|
||||
Runtime/StringObject.cpp
|
||||
Runtime/StringPrototype.cpp
|
||||
Runtime/Symbol.cpp
|
||||
Runtime/SymbolConstructor.cpp
|
||||
Runtime/SymbolObject.cpp
|
||||
Runtime/SymbolPrototype.cpp
|
||||
Runtime/TypedArray.cpp
|
||||
Runtime/TypedArrayConstructor.cpp
|
||||
Runtime/TypedArrayPrototype.cpp
|
||||
Runtime/Uint8ClampedArray.cpp
|
||||
Runtime/VM.cpp
|
||||
Runtime/Value.cpp
|
||||
Runtime/WithScope.cpp
|
||||
Token.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibJS js)
|
||||
target_link_libraries(LibJS LibM LibCore LibCrypto LibRegex)
|
Loading…
Add table
Add a link
Reference in a new issue