-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make static linking possible when using Visual Studio and when using GNU Make. To link statically with GNU Make, do: make LDFLAGS=-static ...other arguments... To link statically with VS 2015, install static versions of dependencies: vcpkg install libpng:x86-windows-static gflags:x86-windows-static change the runtime library setting in the project from /MD to /MT, attempt to build with VS and then run: c:\path\to\msbuild /p:Configuration=Release /p:VcpkgTriplet=x86-windows-static /p:VcpkgEnabled=true
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters