summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/CMakeLists.txt
blob: 38f84aee583c36efea377fb32b47c9be9661f586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
set(SOURCES
    AST.cpp
    Console.cpp
    Heap/Handle.cpp
    Heap/HeapBlock.cpp
    Heap/Heap.cpp
    Interpreter.cpp
    Lexer.cpp
    MarkupGenerator.cpp
    Parser.cpp
    Runtime/ArrayConstructor.cpp
    Runtime/Array.cpp
    Runtime/ArrayPrototype.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/Exception.cpp
    Runtime/FunctionConstructor.cpp
    Runtime/Function.cpp
    Runtime/FunctionPrototype.cpp
    Runtime/GlobalObject.cpp
    Runtime/IndexedProperties.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/PropertyAttributes.cpp
    Runtime/ProxyConstructor.cpp
    Runtime/ProxyObject.cpp
    Runtime/ProxyPrototype.cpp
    Runtime/Reference.cpp
    Runtime/ReflectObject.cpp
    Runtime/ScriptFunction.cpp
    Runtime/Shape.cpp
    Runtime/StringConstructor.cpp
    Runtime/StringObject.cpp
    Runtime/StringPrototype.cpp
    Runtime/Symbol.cpp
    Runtime/SymbolConstructor.cpp
    Runtime/SymbolObject.cpp
    Runtime/SymbolPrototype.cpp
    Runtime/Uint8ClampedArray.cpp
    Runtime/Value.cpp
    Token.cpp
)

serenity_lib(LibJS js)
target_link_libraries(LibJS LibM LibCore)