Files
Rediska/rediska/CMakeLists.txt
Nikita Astafyev 35a6349071
Some checks failed
Code Analysis / analysis (push) Failing after 2m59s
chore: initial commit
2025-12-30 22:34:58 +07:00

26 lines
439 B
CMake

add_subdirectory(common)
add_subdirectory(data-structures)
add_subdirectory(worker)
add_subdirectory(cache)
add_subdirectory(frontend)
add_executable(Rediska main.cpp)
target_link_libraries(Rediska PRIVATE
frontend
worker
cache
common
data-structures
)
# Convenience target
add_custom_target(run
COMMAND $<TARGET_FILE:Rediska>
DEPENDS Rediska
USES_TERMINAL
COMMENT "Building and running Rediska"
)