[INCLUDE/CRT]

- add intrin.h which redirects to compiler specific version
 - Do not add a global include directory for two headers
 - Update float.h accordingly

svn path=/trunk/; revision=61450
This commit is contained in:
Jérôme Gardou 2013-12-27 16:25:52 +00:00
parent aa89359e92
commit 1a41980788
3 changed files with 15 additions and 11 deletions

View file

@ -199,12 +199,6 @@ else()
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/arm)
endif()
if(MSVC)
include_directories(include/crt/msc)
else()
include_directories(include/crt/mingw32)
endif()
add_dependency_header()
add_subdirectory(include/psdk)

View file

@ -16,17 +16,17 @@
*
*/
#ifndef _MINGW_FLOAT_H_
#define _MINGW_FLOAT_H_
#if defined(__GNUC__)
#include <gcc_float.h>
#include "mingw32/gcc_float.h"
#elif defined(_MSC_VER)
#include <msc_float.h>
#include "msc/msc_float.h"
#else
#error
#endif
#ifndef _MINGW_FLOAT_H_
#define _MINGW_FLOAT_H_
#include <crtdefs.h>
/*

View file

@ -0,0 +1,10 @@
#pragma once
#ifdef __MINGW32__
# include "mingw32/intrin.h"
#elif defined(_MSC_VER)
# include "msc/intrin.h"
#else
# error Please implement intrinsics for your target compiler
#endif