Building GLFW with Visual C++ 2015 (x64)
cd /d "%USERPROFILE%"
git clone https://github.com/glfw/glfw
cd glfw
mkdir build_vs14_win64
cd build_vs14_win64
cmake -G "Visual Studio 14 2015 Win64" ..
# nim c -r -d:release -d:ssl nimblenext.nim | |
## name: Nimble:Next | |
## type: experimantal | |
## desc: package manager for Nim | |
type NimbleFile = object | |
deps: seq[string] | |
type NimblePkgInfo = object |
Building GLFW with Visual C++ 2015 (x64)
cd /d "%USERPROFILE%"
git clone https://github.com/glfw/glfw
cd glfw
mkdir build_vs14_win64
cd build_vs14_win64
cmake -G "Visual Studio 14 2015 Win64" ..
// compile with -std=c++1y | |
#include <algorithm> | |
#include <functional> | |
#include <iterator> | |
#include <vector> | |
namespace LoDash { | |
using std::begin; |