repo.or.cz
/
piglit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cl: cl_mem_flags has CL_MEM_KERNEL_READ_AND_WRITE since 2.0
[piglit.git]
/
tests
/
util
/
CMakeLists.no_api.txt
blob
5a4fe6fd6b5bae177e6cfa5adac73d966b4c1148
1
include_directories(
2
${UTIL_INCLUDES}
3
)
4
5
if(EGL_FOUND)
6
list(APPEND UTIL_SOURCES
7
piglit-util-egl.c
8
)
9
endif()
10
11
piglit_add_library (piglitutil
12
${UTIL_SOURCES}
13
)
14
15
if(UNIX)
16
target_link_libraries(piglitutil m)
17
endif(UNIX)
18
19
if(EGL_FOUND)
20
target_link_libraries(piglitutil ${EGL_LDFLAGS})
21
endif()
22
23
# vim: ft=cmake: