CMakeLists.txt 612 B

1234567891011121314151617181920212223242526272829303132
  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. SQLClient.cpp
  21. TreeNode.cpp
  22. Tuple.cpp
  23. Value.cpp
  24. )
  25. set(GENERATED_SOURCES
  26. ../../Services/SQLServer/SQLClientEndpoint.h
  27. ../../Services/SQLServer/SQLServerEndpoint.h
  28. )
  29. serenity_lib(LibSQL sql)
  30. target_link_libraries(LibSQL LibCore LibSyntax)