Files
renderdoc/qrenderdoc/CMakeLists.txt
T
Chia-I Wu cb9449230a Update CMake rules
* Suggest users to use VS on Windows
* Add a top-level wrapper Makefile and disallow in-source builds
* Support clang
* Centralize compiler flags
* Remove all occurrences of "if(WIN32)..."
* Make qrenderdoc an external project
2016-03-11 10:23:56 +08:00

8 lines
259 B
CMake

set(output_dir ${CMAKE_BINARY_DIR}/bin)
include(ExternalProject)
ExternalProject_Add(qrenderdoc
DEPENDS renderdoc
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}
CONFIGURE_COMMAND qmake "CONFIG+=debug" "DESTDIR=${output_dir}" ${CMAKE_CURRENT_SOURCE_DIR})