mirror of
https://github.com/gflags/gflags.git
synced 2025-04-20 20:18:49 +00:00
* Document how to change the default flag value (csilvers) * Add a windows-specific README (csilvers) * A few comment updates (wojtekm) git-svn-id: https://gflags.googlecode.com/svn/trunk@39 6586e3c6-dcc4-952a-343f-ff74eb82781d
20 lines
904 B
Text
20 lines
904 B
Text
You can compile this under Windows, if you want. The solution file
|
|
(for VC 7.1 and later) is in this directory.
|
|
|
|
I've been told the following steps work to compile this under win64:
|
|
1) Open the provided solution file
|
|
2) Click on the Win32 target (on the right of Debug/Release)
|
|
3) Choose Configuration Manager
|
|
4) In Active Solution Platforms, choose New...
|
|
5) In "Type of select the new platform", choose x64.
|
|
In "Copy settings from:" choose Win32.
|
|
6) Ok and then Close
|
|
|
|
I don't know very much about how to install DLLs on Windows, so you'll
|
|
have to figure out that part for yourself. If you choose to just
|
|
re-use the existing .sln, make sure you set the IncludeDir's
|
|
appropriately! Look at the properties for libgflags.dll.
|
|
|
|
You can also link gflags code in statically. For this to work, you'll
|
|
need to add "/D GFLAGS_DLL_DECL=" to the compile line of every
|
|
gflags .cc file.
|