mirror of https://github.com/AxioDL/zeus.git
Windows fixes
This commit is contained in:
parent
5e2b997266
commit
72972196a4
|
@ -4,7 +4,6 @@
|
|||
#if _M_IX86_FP >= 1 || _M_X64
|
||||
# define __SSE__ 1
|
||||
#endif
|
||||
#include <x86intrin.h>
|
||||
|
||||
#if __SSE__
|
||||
# include <immintrin.h>
|
||||
|
|
|
@ -1,10 +1,16 @@
|
|||
#ifndef MATH_HPP
|
||||
#define MATH_HPP
|
||||
|
||||
#ifndef NOMINMAX
|
||||
#define NOMINMAX 1
|
||||
#endif
|
||||
#ifndef _USE_MATH_DEFINES
|
||||
#define _USE_MATH_DEFINES 1
|
||||
#endif
|
||||
#include <math.h>
|
||||
#include "CVector3f.hpp"
|
||||
#include "CTransform.hpp"
|
||||
#include <algorithm>
|
||||
|
||||
namespace Zeus
|
||||
{
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#include "Math.hpp"
|
||||
#include <x86intrin.h>
|
||||
|
||||
namespace Zeus
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue