CMakeLists.txt 425 B

123456789101112131415161718192021
  1. set(SOURCES
  2. AST/Lexer.cpp
  3. AST/Parser.cpp
  4. AST/SyntaxHighlighter.cpp
  5. AST/Token.cpp
  6. BTree.cpp
  7. BTreeIterator.cpp
  8. Database.cpp
  9. HashIndex.cpp
  10. Heap.cpp
  11. Index.cpp
  12. Key.cpp
  13. Meta.cpp
  14. Row.cpp
  15. TreeNode.cpp
  16. Tuple.cpp
  17. Value.cpp
  18. )
  19. serenity_lib(LibSQL sql)
  20. target_link_libraries(LibSQL LibCore LibSyntax)