From 83e6715e39f9496b3043df70b1545e0a6284619f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 9 Jun 2024 06:20:09 +0200 Subject: hash: add library with multiple hash implementations --- editor/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'editor') diff --git a/editor/CMakeLists.txt b/editor/CMakeLists.txt index 81afadd0..8375f326 100644 --- a/editor/CMakeLists.txt +++ b/editor/CMakeLists.txt @@ -25,6 +25,9 @@ add_executable(${self} dummy.cc) if (FLOORMAT_ASAN) set_target_properties(${self} PROPERTIES OUTPUT_NAME "floormat-editor-asan") endif() -target_link_libraries(${self} PRIVATE ${self}_o floormat-main floormat-serialize floormat-draw floormat) +target_link_libraries(${self} PRIVATE ${self}_o + floormat-main floormat-serialize floormat-draw floormat-hash + floormat +) fm_install_executable(${self}) -- cgit v1.2.3