Files
o3de/Code/Legacy/CryCommon/CryCommon.cpp
T
Esteban Papp 9f0bbf3b74 SPEC-7531 Change Code/CryEngine to Code/Legacy (#1634)
* git mv Code\CryEngine Code\Legacy
* redirecting CMakeLists.txt
* fixing uic warning
* Some more CryEngine mentions
* validation scripts

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
2021-06-29 13:51:24 -07:00

53 lines
1.1 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
// This contains compiled code that is used by other projects in the solution.
// Because we don't want static DLL dependencies, the CryCommon project is not compiled into a library.
// Instead, this .cpp file is included in every project which needs it.
// But we also include it in the CryCommon project (disabled in the build),
// so that CryCommon can have the same editable settings as other projects.
// Set this to 1 to get an output of some pre-defined compiler symbols.
#if 0
#ifdef _WIN32
#pragma message("_WIN32")
#endif
#ifdef _WIN64
#pragma message("_WIN64")
#endif
#ifdef _M_IX86
#pragma message("_M_IX86")
#endif
#ifdef _M_PPC
#pragma message("_M_PPC")
#endif
#ifdef _DEBUG
#pragma message("_DEBUG")
#endif
#ifdef _DLL
#pragma message("_DLL")
#endif
#ifdef _USRDLL
#pragma message("_USRDLL")
#endif
#ifdef _MT
#pragma message("_MT")
#endif
#endif
#include <AzCore/PlatformIncl.h>
#include "TypeInfo_impl.h"