build: cmake: link alternator against cql3

otherwise we'd have
```
In file included from /home/kefu/dev/scylladb/alternator/executor.cc:37:
/home/kefu/dev/scylladb/cql3/util.hh:21:10: fatal error: 'cql3/CqlParser.hpp' file not found
         ^~~~~~~~~~~~~~~~~~~~
```

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
This commit is contained in:
Kefu Chai
2023-02-21 13:38:58 +08:00
parent 957403663f
commit 0fffd34be8

View File

@@ -22,6 +22,7 @@ target_include_directories(alternator
${CMAKE_SOURCE_DIR}
${CMAKE_BINARY_DIR})
target_link_libraries(alternator
cql3
idl
Seastar::seastar
xxHash::xxhash)