From 55c508e729eb40e01eabc5a0e1514b1967b37aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 3 Dec 2016 16:38:45 -0800 Subject: [PATCH] Added VS2017. --- makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/makefile b/makefile index 33bf1e3d2..528438992 100644 --- a/makefile +++ b/makefile @@ -42,6 +42,7 @@ projgen: ## Generate project files for all configurations. $(GENIE) --with-tools --with-examples --with-shared-lib vs2012 $(GENIE) --with-tools --with-examples --with-shared-lib vs2013 $(GENIE) --with-tools --with-examples --with-shared-lib vs2015 + $(GENIE) --with-tools --with-examples --with-shared-lib vs2017 $(GENIE) --with-tools --with-examples --with-shared-lib --gcc=mingw-gcc gmake $(GENIE) --with-tools --with-examples --with-shared-lib --gcc=linux-gcc gmake $(GENIE) --with-tools --with-examples --with-shared-lib --gcc=osx gmake @@ -176,6 +177,18 @@ vs2015-release64: .build/projects/vs2015 ## Build - VS2015 x64 Release devenv .build/projects/vs2015/bgfx.sln /Build "Release|x64" vs2015: vs2015-debug32 vs2015-release32 vs2015-debug64 vs2015-release64 ## Build - VS2015 x86/x64 Debug and Release +.build/projects/vs2017: + $(GENIE) --with-tools --with-examples --with-shared-lib vs2017 +vs2017-debug32: .build/projects/vs2017 ## Build - vs2017 x86 Debug + devenv .build/projects/vs2017/bgfx.sln /Build "Debug|Win32" +vs2017-release32: .build/projects/vs2017 ## Build - vs2017 x86 Release + devenv .build/projects/vs2017/bgfx.sln /Build "Release|Win32" +vs2017-debug64: .build/projects/vs2017 ## Build - vs2017 x64 Debug + devenv .build/projects/vs2017/bgfx.sln /Build "Debug|x64" +vs2017-release64: .build/projects/vs2017 ## Build - vs2017 x64 Release + devenv .build/projects/vs2017/bgfx.sln /Build "Release|x64" +vs2017: vs2017-debug32 vs2017-release32 vs2017-debug64 vs2017-release64 ## Build - vs2017 x86/x64 Debug and Release + .build/projects/gmake-nacl: $(GENIE) --gcc=nacl gmake nacl-debug32: .build/projects/gmake-nacl ## Build - Native Client x86 Debug