Fixing Windows compilation.

Removing __cpuid definition when compiling for Windows to avoid conflicting definitions of __cpuid provided by gcc and intrin.h .
Updating GitLab yml to deploy to Slack during the build step for manual testing.
This commit is contained in:
Asher Dawes
2018-09-20 16:08:25 -07:00
parent 09dfacd0eb
commit 5ce49ee344
3 changed files with 46 additions and 46 deletions

View File

@@ -7,6 +7,9 @@
#include <string>
#include <stdint.h>
#ifdef _WIN32
#undef __cpuid
#endif
#include <boost/thread.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/function.hpp>