summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-06-09 06:20:09 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-06-09 09:38:58 +0200
commit83e6715e39f9496b3043df70b1545e0a6284619f (patch)
tree5fdc4fe8cfc5a3eeead9b65233240ac07d349647 /editor
parent29cd4d4e3bbf519a95763394801caeb43c7b5629 (diff)
hash: add library with multiple hash implementations
Diffstat (limited to 'editor')
-rw-r--r--editor/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
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})