CMakeLists.txt 551 B

1234567891011121314151617181920212223242526272829
  1. set(SOURCES
  2. AST/CreateSchema.cpp
  3. AST/CreateTable.cpp
  4. AST/Lexer.cpp
  5. AST/Parser.cpp
  6. AST/SyntaxHighlighter.cpp
  7. AST/Token.cpp
  8. BTree.cpp
  9. BTreeIterator.cpp
  10. Database.cpp
  11. HashIndex.cpp
  12. Heap.cpp
  13. Index.cpp
  14. Key.cpp
  15. Meta.cpp
  16. Row.cpp
  17. SQLClient.cpp
  18. TreeNode.cpp
  19. Tuple.cpp
  20. Value.cpp
  21. )
  22. set(GENERATED_SOURCES
  23. ../../Services/SQLServer/SQLClientEndpoint.h
  24. ../../Services/SQLServer/SQLServerEndpoint.h
  25. )
  26. serenity_lib(LibSQL sql)
  27. target_link_libraries(LibSQL LibCore LibSyntax)