diff options
author | José Fonseca <jfonseca@vmware.com> | 2014-02-28 12:10:03 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2014-02-28 12:13:38 +0000 |
commit | 3b350ff556a49050a7ade2c01dca9227b87d811a (patch) | |
tree | 56a1d48f0b0d165e3e880d661e92d03e8fe07edd /wrappers/CMakeLists.txt | |
parent | 888112983ef9564b3a9d15699faa17c337d3942b (diff) |
egltrace: Drop debug.apitrace.procname support.
As suggested by Alexander Monakov, given it is no longer necessary with
Android 4.0 onwards.
Also remove all isTracingEnabled logic with it, simplifying code
substantially, and addressing issue #171.
Diffstat (limited to 'wrappers/CMakeLists.txt')
-rw-r--r-- | wrappers/CMakeLists.txt | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/wrappers/CMakeLists.txt b/wrappers/CMakeLists.txt index b29d5b1a..36a77a4d 100644 --- a/wrappers/CMakeLists.txt +++ b/wrappers/CMakeLists.txt @@ -9,15 +9,6 @@ include_directories ( ${CMAKE_SOURCE_DIR}/dispatch ) -add_library (common_trace STATIC - trace.cpp -) - -set_target_properties (common_trace PROPERTIES - # Ensure it can be statically linked in shared libraries - COMPILE_FLAGS "${CMAKE_SHARED_LIBRARY_CXX_FLAGS}" -) - set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) if (WIN32) @@ -47,7 +38,6 @@ if (WIN32) ) add_library (ddrawtrace MODULE ddraw.def ddrawtrace.cpp) target_link_libraries (ddrawtrace - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -83,7 +73,6 @@ if (WIN32) ) target_link_libraries (d3d8trace d3dhelpers - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -120,7 +109,6 @@ if (WIN32) ) target_link_libraries (d3d9trace d3dhelpers - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -188,7 +176,6 @@ if (WIN32) ) target_link_libraries (dxgitrace d3dhelpers - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -280,7 +267,6 @@ if (WIN32) ) add_library (d2d1trace SHARED d2d1.def d2d1trace.cpp) target_link_libraries (d2d1trace - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -330,7 +316,6 @@ if (WIN32) add_dependencies (wgltrace glproc) target_link_libraries (wgltrace glproc_gl - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -376,7 +361,6 @@ elseif (APPLE) target_link_libraries (cgltrace glproc_gl - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -420,7 +404,6 @@ elseif (X11_FOUND) target_link_libraries (glxtrace glproc_gl - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} @@ -469,7 +452,6 @@ if (ENABLE_EGL AND NOT WIN32 AND NOT APPLE) target_link_libraries (egltrace glproc_egl - common_trace common ${ZLIB_LIBRARIES} ${SNAPPY_LIBRARIES} |