From 5ea4a326f32a9219ceb2d8928366fdcc1de55c3b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 14 Mar 2018 01:04:25 +0100 Subject: [PATCH] Filter-out DirectX 11 sources on unix. --- standalone/build/unix/build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standalone/build/unix/build.mk b/standalone/build/unix/build.mk index fb496e9e..cd2440ce 100644 --- a/standalone/build/unix/build.mk +++ b/standalone/build/unix/build.mk @@ -5,7 +5,7 @@ INCLUDES := $(shell pkg-config --cflags glfw3 gtk+-2.0) -I../../../imgui -I../.. LIBS := $(shell pkg-config --libs glfw3 gtk+-2.0) -lpthread -ldl -lGL IMAGE := Tracy -FILTER := ../../../nfd/nfd_win.cpp +FILTER := ../../../nfd/nfd_win.cpp ../../src/imgui_impl_dx11.cpp BASE := $(shell egrep 'ClCompile.*cpp"' ../win32/$(IMAGE).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g') BASE2 := $(shell egrep 'ClCompile.*c"' ../win32/$(IMAGE).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')