CMakeLists.txt 662 B

12345678910111213141516171819202122232425262728293031323334
  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/Statement.cpp
  10. AST/SyntaxHighlighter.cpp
  11. AST/Token.cpp
  12. BTree.cpp
  13. BTreeIterator.cpp
  14. Database.cpp
  15. HashIndex.cpp
  16. Heap.cpp
  17. Index.cpp
  18. Key.cpp
  19. Meta.cpp
  20. Row.cpp
  21. Serializer.cpp
  22. SQLClient.cpp
  23. TreeNode.cpp
  24. Tuple.cpp
  25. Value.cpp
  26. )
  27. set(GENERATED_SOURCES
  28. ../../Services/SQLServer/SQLClientEndpoint.h
  29. ../../Services/SQLServer/SQLServerEndpoint.h
  30. )
  31. serenity_lib(LibSQL sql)
  32. target_link_libraries(LibSQL LibCore LibSyntax LibRegex)