|
|
scott <sco### [at] scottcom> wrote:
> There are a few steps I needed to take to get this to work correctly.
> This isn't necessarily the best way or the only way, it's simply what I
> did to get it working.
>
> [... step 1-9 ...]
Just tried it with VS2013. Still doesn't build, you need a few more steps for
that. Here's the stuff you need in addition to the earlier steps:
10. Fix msvc.h:
#elif _MSC_VER >= 1800 && _MSC_VER < 1900
#define COMPILER_VER ".msvc13"
#define METADATA_COMPILER_STRING "msvc 13"
#else
11. Search for 'using std::min'. Above the 'namespace', add '#include
<algorithm>'.
Build, done.
Post a reply to this message
|
|