]> git.cworth.org Git - apitrace/blobdiff - CMakeLists.txt
d3dretrace: Use DirectXTex for d3d10 state too.
[apitrace] / CMakeLists.txt
index 3ee670d08ba856916968bce4418f4716ec253b94..3b932e1459cc3aa41300e849b1e335af83a38d09 100644 (file)
@@ -191,6 +191,10 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
         ERROR_QUIET
         OUTPUT_STRIP_TRAILING_WHITESPACE
     )
+    CHECK_INCLUDE_FILES(proc/readproc.h READPROC_H_FOUND)
+    if (READPROC_H_FOUND)
+        add_definitions (-DHAVE_READPROC_H)
+    endif ()
 endif()
 
 if (WIN32 OR APPLE)
@@ -247,6 +251,7 @@ endif ()
 
 if (WIN32)
     add_subdirectory (thirdparty/less)
+    add_subdirectory (thirdparty/directxtex)
 endif ()
 
 # Always use bundled QJSon.
@@ -352,13 +357,18 @@ install (
         scripts/jsondiff.py
         scripts/profileshader.py
         scripts/retracediff.py
-        scripts/samples.py
         scripts/snapdiff.py
         scripts/tracecheck.py
         scripts/tracediff.py
         scripts/unpickle.py
     DESTINATION ${SCRIPTS_INSTALL_DIR}
 )
+if (WIN32)
+    install (
+        PROGRAMS scripts/convert.py
+        DESTINATION ${SCRIPTS_INSTALL_DIR}
+    )
+endif ()
 
 ##############################################################################
 # GUI