CMakeLists.txt 631 B

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