Merge "Fix color change verification in dithering tests" into nougat-cts-dev am:...
[platform/upstream/VK-GL-CTS.git] / framework / delibs / depool / CMakeLists.txt
1 # cmake file for depool
2
3 if (NOT DE_DEFS)
4         message(FATAL_ERROR "Include Defs.cmake")
5 endif ()
6
7 set(DEPOOL_SRCS
8         deMemPool.c
9         deMemPool.h
10         dePoolArray.c
11         dePoolArray.h
12         dePoolHeap.c
13         dePoolHeap.h
14         dePoolHash.c
15         dePoolHash.h
16         dePoolHashArray.c
17         dePoolHashArray.h
18         dePoolHashSet.c
19         dePoolHashSet.h
20         dePoolMultiSet.c
21         dePoolMultiSet.h
22         dePoolSet.c
23         dePoolSet.h
24         dePoolStringBuilder.c
25         dePoolStringBuilder.h
26         dePoolTest.c
27         dePoolTest.h
28         )
29
30 if (DE_OS_IS_UNIX OR DE_OS_IS_QNX)
31         # vsnprintf
32         add_definitions(-D_XOPEN_SOURCE=600)
33 endif ()
34
35 include_directories(../debase)
36 add_library(depool STATIC ${DEPOOL_SRCS})
37 target_link_libraries(depool debase)