diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2015-03-15 10:23:28 +0000 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2015-03-15 10:23:28 +0000 |
commit | d6df80541b868b124c0214b38d0ea3e411e62665 (patch) | |
tree | 14f0e2cd141098ee058e08a64666ed31a939c3e8 /wrappers | |
parent | add085b2f7149eace7df65a739ab7c754d4486e3 (diff) |
cmake: Don't link wrappers against ZLIB.
We use SNAPPY exclusively when tracing.
Diffstat (limited to 'wrappers')
-rw-r--r-- | wrappers/CMakeLists.txt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/wrappers/CMakeLists.txt b/wrappers/CMakeLists.txt index 64638ce0..38d5fae7 100644 --- a/wrappers/CMakeLists.txt +++ b/wrappers/CMakeLists.txt @@ -63,7 +63,6 @@ if (WIN32) add_library (ddrawtrace MODULE ddraw.def ddrawtrace.cpp) target_link_libraries (ddrawtrace common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ) set_target_properties (ddrawtrace PROPERTIES @@ -99,7 +98,6 @@ if (WIN32) target_link_libraries (d3d8trace d3dhelpers common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ) set_target_properties (d3d8trace PROPERTIES @@ -136,7 +134,6 @@ if (WIN32) target_link_libraries (d3d9trace d3dhelpers common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ) set_target_properties (d3d9trace PROPERTIES @@ -177,7 +174,6 @@ if (WIN32) target_link_libraries (dxgitrace d3dhelpers common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ) set_target_properties (dxgitrace @@ -210,7 +206,6 @@ if (WIN32) add_library (d2d1trace MODULE d2d1trace.def d2d1trace.cpp) target_link_libraries (d2d1trace common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ) set_target_properties (d2d1trace @@ -248,7 +243,6 @@ if (WIN32) glhelpers glproc_gl common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ) set_target_properties (wgltrace PROPERTIES @@ -297,7 +291,6 @@ elseif (APPLE) glhelpers glproc_gl common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} dl @@ -344,7 +337,6 @@ elseif (X11_FOUND) glhelpers glproc_gl common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} dl @@ -395,7 +387,6 @@ if (ENABLE_EGL AND NOT WIN32 AND NOT APPLE) glhelpers glproc_egl common - ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} dl |