mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
cb9449230a
* 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
8 lines
259 B
CMake
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})
|