src/CMakeLists.txt

changeset 390
d345541018fa
parent 377
2099a3aff61e
child 391
f094a53c1178
equal deleted inserted replaced
389:92e482410453 390:d345541018fa
1 set(sources 1 set(sources
2 allocator.c
3 array.c
4 avl.c
5 buffer.c
6 list.c 2 list.c
7 logging.c
8 map.c
9 mempool.c
10 properties.c
11 stack.c
12 string.c
13 test.c
14 ucx.c
15 utils.c
16 ) 3 )
17 set(headers 4 set(headers
18 ucx/allocator.h 5 cx/list.h
19 ucx/array.h
20 ucx/avl.h
21 ucx/buffer.h
22 ucx/list.h
23 ucx/logging.h
24 ucx/map.h
25 ucx/mempool.h
26 ucx/properties.h
27 ucx/stack.h
28 ucx/string.h
29 ucx/test.h
30 ucx/ucx.h
31 ucx/utils.h
32 ) 6 )
33 7
34 add_library(ucx SHARED ${sources}) 8 add_library(ucx SHARED ${sources})
35 add_library(ucx_static STATIC ${sources}) 9 add_library(ucx_static STATIC ${sources})
36 10
37 target_include_directories(ucx PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) 11 target_include_directories(ucx PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
38 target_include_directories(ucx_static PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) 12 target_include_directories(ucx_static PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
39 13
40 set_target_properties(ucx PROPERTIES SOVERSION 3 VERSION 3.1.0) 14 set_target_properties(ucx PROPERTIES SOVERSION 4 VERSION 4.0.0)
41 set_target_properties(ucx_static PROPERTIES VERSION ${CMAKE_PROJECT_VERSION}) 15 set_target_properties(ucx_static PROPERTIES VERSION ${CMAKE_PROJECT_VERSION})
42 16
43 # it is sufficient to specify the headers for one of the targets 17 # it is sufficient to specify the headers for one of the targets
44 set_target_properties(ucx PROPERTIES PUBLIC_HEADER "${headers}") 18 set_target_properties(ucx PROPERTIES PUBLIC_HEADER "${headers}")
45 19

mercurial