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>
This commit is contained in:
Esteban Papp
2021-06-29 13:51:24 -07:00
committed by GitHub
parent f570925c0d
commit 9f0bbf3b74
384 changed files with 25 additions and 31 deletions
+52
View File
@@ -0,0 +1,52 @@
/*
* 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"