forked from teamnwah/openmw-tes3coop
7238847b8b
Details: - create a sub directory to store CMake scripts (later more to come) - add a search Ogre package script (may be replaced later by "official" Ogre 1.7 search script, since they switched to CMake, yeah !) - fixed header issues being not available with MSVC and replaced by equivalent functions if assumed portable enough
9 lines
142 B
C
9 lines
142 B
C
// Wrapper for MSVC
|
|
#ifndef _STRINGS_WRAPPER_H
|
|
#define _STRINGS_WRAPPER_H
|
|
|
|
#pragma warning(disable: 4996)
|
|
|
|
#define strcasecmp stricmp
|
|
|
|
#endif
|