Fix MSVC 2015 project and add a VS 2017 solution

This commit is contained in:
rustyx 2017-10-16 16:40:50 +02:00 committed by Jason Evans
parent f4f814cd4c
commit 33df2fa169
14 changed files with 870 additions and 10 deletions

View file

@ -0,0 +1,11 @@
#include "test_threads.h"
#include <future>
#include <functional>
#include <chrono>
using namespace std::chrono_literals;
int main(int argc, char** argv) {
int rc = test_threads();
return rc;
}