src/CMakeLists.txt

changeset 483
929016224c3c
parent 470
e5a4de4f1e03
child 494
6ce8cfa10a96
equal deleted inserted replaced
482:0d998f19d130 483:929016224c3c
1 set(sources 1 set(sources
2 utils.c
2 allocator.c 3 allocator.c
3 linked_list.c 4 linked_list.c
4 tree.c 5 tree.c
6 buffer.c
5 ) 7 )
6 set(headers 8 set(headers
9 cx/utils.h
7 cx/allocator.h 10 cx/allocator.h
8 cx/list.h 11 cx/list.h
9 cx/linked_list.h 12 cx/linked_list.h
10 cx/tree.h 13 cx/tree.h
14 cx/buffer.h
11 ) 15 )
12 16
13 add_library(ucx SHARED ${sources}) 17 add_library(ucx SHARED ${sources})
14 add_library(ucx_static STATIC ${sources}) 18 add_library(ucx_static STATIC ${sources})
15 19

mercurial