Add Windows support (currently only builds x64)

This commit is contained in:
Darren VanBuren 2017-01-31 20:40:15 -08:00
parent daccdd0082
commit 19ecef63f6
4 changed files with 117 additions and 2 deletions

View file

@ -1,6 +1,11 @@
#pragma comment(lib, "glfw3.lib")
#pragma comment(lib, "vulkan-1.lib")
#define GLFW_INCLUDE_VULKAN
#include <GLFW/glfw3.h>
#if _WIN32 || _WIN64
#include <algorithm>
#endif
#include <cstring>
#include <fstream>
#include <functional>