From 532dc07c7b174fb73ec0f97906a42e90c51cd497 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Thu, 28 Feb 2019 19:35:42 +1100 Subject: [PATCH] [c-host] move windows dll folder into windows dir --- c-host/Makefile | 4 ++-- c-host/{ => windows}/dll/libd3d11.def | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename c-host/{ => windows}/dll/libd3d11.def (100%) diff --git a/c-host/Makefile b/c-host/Makefile index da9ab5bb..b93ddee2 100644 --- a/c-host/Makefile +++ b/c-host/Makefile @@ -11,7 +11,7 @@ OBJS = app.o # if windows ifdef OS - LDFLAGS = -L./dll + LDFLAGS = -L./windows/dll LIBS += -lsetupapi OBJS += windows/platform.o OBJS += windows/windebug.o @@ -20,7 +20,7 @@ ifdef OS ifeq ($(USE_DXGI), 1) CFLAGS += -DUSE_DXGI -DCOBJMACROS -DINITGUID LIBS += -ld3d11 -ldxgi - DLLS += dll/libd3d11.a + DLLS += windows/dll/libd3d11.a OBJS += capture/dxgi.o endif else diff --git a/c-host/dll/libd3d11.def b/c-host/windows/dll/libd3d11.def similarity index 100% rename from c-host/dll/libd3d11.def rename to c-host/windows/dll/libd3d11.def