Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ add_library(korka_lib
include/korka/shared/types.hpp
include/korka/shared/flat_map.hpp
include/korka/utils/frozen_hash_string_view.hpp
include/korka/utils/byte_reader.hpp
include/korka/utils/function_traits.hpp
)

target_include_directories(korka_lib
Expand All @@ -60,6 +62,9 @@ target_include_directories(korka_lib
add_executable(pxkorka main.cpp)
target_link_libraries(pxkorka PRIVATE korka_lib)

# Ignore unused-but-set-variable shadow
target_compile_options(korka_lib PUBLIC -Wno-error=unused-but-set-variable -Wno-error=shadow)

# --- TESTS ---
#if (ENABLE_TESTS)
# enable_testing()
Expand Down
Loading
Loading