diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-06-09 06:20:09 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-06-09 09:38:58 +0200 |
| commit | 83e6715e39f9496b3043df70b1545e0a6284619f (patch) | |
| tree | 5fdc4fe8cfc5a3eeead9b65233240ac07d349647 /editor | |
| parent | 29cd4d4e3bbf519a95763394801caeb43c7b5629 (diff) | |
hash: add library with multiple hash implementations
Diffstat (limited to 'editor')
| -rw-r--r-- | editor/CMakeLists.txt | 5 |
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}) |
