mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
35cc323ee4
* Building qrenderdoc on windows will be supported just because that's likely where I will be developing it mostly, but for the foreseeable future it won't be built by default. If it ever gets good enough to replace the .NET UI, then we can look at it again.
14 lines
346 B
Makefile
14 lines
346 B
Makefile
.PHONY: all
|
|
all:
|
|
mkdir -p bin/
|
|
cd renderdoc && make librenderdoc.so
|
|
cd renderdoccmd && make bin/renderdoccmd
|
|
cd qrenderdoc && qmake "CONFIG+=debug" && make
|
|
cp renderdoc/librenderdoc.so renderdoccmd/bin/renderdoccmd bin/
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
cd renderdoc && make clean
|
|
cd renderdoccmd && make clean
|
|
cd qrenderdoc && rm -rf .obj Makefile*
|