mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 12:42:34 +01:00
Update Makefile and Build Docs from VS2017 to VS2019 (#3170)
* Update build.rst * Update makefile
This commit is contained in:
committed by
GitHub
parent
98f16cd125
commit
17ab1e2a62
48
makefile
48
makefile
@@ -40,8 +40,8 @@ clean: ## Clean all intermediate files.
|
||||
@mkdir .build
|
||||
|
||||
projgen: ## Generate project files for all configurations.
|
||||
$(GENIE) --with-tools --with-combined-examples --with-shared-lib vs2017
|
||||
$(GENIE) --with-tools --with-combined-examples --vs=winstore100 vs2017
|
||||
$(GENIE) --with-tools --with-combined-examples --with-shared-lib vs2019
|
||||
$(GENIE) --with-tools --with-combined-examples --vs=winstore100 vs2019
|
||||
$(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=mingw-gcc gmake
|
||||
$(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=linux-gcc gmake
|
||||
$(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=osx-x64 gmake
|
||||
@@ -156,29 +156,29 @@ mingw-clang-release64: .build/projects/gmake-mingw-clang ## Build - MinGW Clang
|
||||
$(MAKE) -R -C .build/projects/gmake-mingw-clang config=release64
|
||||
mingw-clang: mingw-clang-debug32 mingw-clang-release32 mingw-clang-debug64 mingw-clang-release64 ## Build - MinGW Clang x86/x64 Debug and Release
|
||||
|
||||
.build/projects/vs2017:
|
||||
$(GENIE) --with-tools --with-combined-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/vs2019:
|
||||
$(GENIE) --with-tools --with-combined-examples --with-shared-lib vs2019
|
||||
vs2019-debug32: .build/projects/vs2019 ## Build - vs2019 x86 Debug
|
||||
devenv .build/projects/vs2019/bgfx.sln /Build "Debug|Win32"
|
||||
vs2019-release32: .build/projects/vs2019 ## Build - vs2019 x86 Release
|
||||
devenv .build/projects/vs2019/bgfx.sln /Build "Release|Win32"
|
||||
vs2019-debug64: .build/projects/vs2019 ## Build - vs2019 x64 Debug
|
||||
devenv .build/projects/vs2019/bgfx.sln /Build "Debug|x64"
|
||||
vs2019-release64: .build/projects/vs2019 ## Build - vs2019 x64 Release
|
||||
devenv .build/projects/vs2019/bgfx.sln /Build "Release|x64"
|
||||
vs2019: vs2019-debug32 vs2019-release32 vs2019-debug64 vs2019-release64 ## Build - vs2019 x86/x64 Debug and Release
|
||||
|
||||
.build/projects/vs2017-winstore100:
|
||||
$(GENIE) --with-combined-examples --vs=winstore100 vs2017
|
||||
vs2017-winstore100-debug32: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x86 Debug
|
||||
devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Debug|Win32"
|
||||
vs2017-winstore100-release32: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x86 Release
|
||||
devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Release|Win32"
|
||||
vs2017-winstore100-debug64: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x64 Debug
|
||||
devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Debug|x64"
|
||||
vs2017-winstore100-release64: .build/projects/vs2017-winstore100 ## Build - vs2017-winstore100 x64 Release
|
||||
devenv .build/projects/vs2017-winstore100/bgfx.sln /Build "Release|x64"
|
||||
vs2017-winstore100: vs2017-winstore100-debug32 vs2017-winstore100-release32 vs2017-winstore100-debug64 vs2017-winstore100-release64 ## Build - vs2017-winstore100 x86/x64 Debug and Release
|
||||
.build/projects/vs2019-winstore100:
|
||||
$(GENIE) --with-combined-examples --vs=winstore100 vs2019
|
||||
vs2019-winstore100-debug32: .build/projects/vs2019-winstore100 ## Build - vs2019-winstore100 x86 Debug
|
||||
devenv .build/projects/vs2019-winstore100/bgfx.sln /Build "Debug|Win32"
|
||||
vs2019-winstore100-release32: .build/projects/vs2019-winstore100 ## Build - vs2019-winstore100 x86 Release
|
||||
devenv .build/projects/vs2019-winstore100/bgfx.sln /Build "Release|Win32"
|
||||
vs2019-winstore100-debug64: .build/projects/vs2019-winstore100 ## Build - vs2019-winstore100 x64 Debug
|
||||
devenv .build/projects/vs2019-winstore100/bgfx.sln /Build "Debug|x64"
|
||||
vs2019-winstore100-release64: .build/projects/vs2019-winstore100 ## Build - vs2019-winstore100 x64 Release
|
||||
devenv .build/projects/vs2019-winstore100/bgfx.sln /Build "Release|x64"
|
||||
vs2019-winstore100: vs2019-winstore100-debug32 vs2019-winstore100-release32 vs2019-winstore100-debug64 vs2019-winstore100-release64 ## Build - vs2019-winstore100 x86/x64 Debug and Release
|
||||
|
||||
.build/projects/gmake-osx-x64:
|
||||
$(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=osx-x64 gmake
|
||||
|
||||
Reference in New Issue
Block a user