src/CMakeLists.txt

changeset 549
d7f0b5a9a985
parent 503
a89857072ace
child 558
9b767b07602c
     1.1 --- a/src/CMakeLists.txt	Mon May 16 19:25:19 2022 +0200
     1.2 +++ b/src/CMakeLists.txt	Wed May 18 16:26:32 2022 +0200
     1.3 @@ -5,8 +5,10 @@
     1.4          linked_list.c
     1.5          tree.c
     1.6          buffer.c
     1.7 +        hash_map.c
     1.8  )
     1.9  set(headers
    1.10 +        cx/common.h
    1.11          cx/utils.h
    1.12          cx/allocator.h
    1.13          cx/iterator.h
    1.14 @@ -14,7 +16,9 @@
    1.15          cx/linked_list.h
    1.16          cx/tree.h
    1.17          cx/buffer.h
    1.18 -)
    1.19 +        cx/map.h
    1.20 +        cx/hash_map.h
    1.21 +        )
    1.22  
    1.23  add_library(ucx SHARED ${sources})
    1.24  add_library(ucx_static STATIC ${sources})

mercurial