mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-06 19:13:27 +00:00
Windows build fixes
This commit is contained in:
parent
5a521ed9c6
commit
27b2f2aedb
@ -7,7 +7,8 @@ if(MSVC)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Shaddup MSVC
|
# Shaddup MSVC
|
||||||
add_definitions(-DUNICODE=1 -D_UNICODE=1 -D__SSE__=1 -D_CRT_SECURE_NO_WARNINGS=1 -DD_SCL_SECURE_NO_WARNINGS=1 /IGNORE:4221 /wd4800 /wd4005 /wd4311 /wd4267 /wd4244 /wd4305 ${VS_DEFINES})
|
add_definitions(-DUNICODE=1 -D_UNICODE=1 -D__SSE__=1 -D_CRT_SECURE_NO_WARNINGS=1 -DD_SCL_SECURE_NO_WARNINGS=1
|
||||||
|
/IGNORE:4221 /wd4800 /wd4005 /wd4311 /wd4267 /wd4244 /wd4200 /wd4305 ${VS_DEFINES})
|
||||||
|
|
||||||
# Link-time Code Generation for Release builds
|
# Link-time Code Generation for Release builds
|
||||||
set(CMAKE_C_FLAGS_RELEASE "/DNDEBUG /O2 /Oy /GL /Gy /MD")
|
set(CMAKE_C_FLAGS_RELEASE "/DNDEBUG /O2 /Oy /GL /Gy /MD")
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include "CFirstPersonCamera.hpp"
|
#include "CFirstPersonCamera.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -101,6 +101,8 @@ SAdvancementDeltas CAnimData::AdvanceAdditiveAnims(float dt)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
SAdvancementDeltas CAnimData::UpdateAdditiveAnims(float dt)
|
SAdvancementDeltas CAnimData::UpdateAdditiveAnims(float dt)
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include "CPoseAsTransforms.hpp"
|
#include "CPoseAsTransforms.hpp"
|
||||||
#include "CHierarchyPoseBuilder.hpp"
|
#include "CHierarchyPoseBuilder.hpp"
|
||||||
#include "CAdditiveAnimPlayback.hpp"
|
#include "CAdditiveAnimPlayback.hpp"
|
||||||
|
#include "CCharLayoutInfo.hpp"
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
enum class EUserEventType
|
enum class EUserEventType
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#include "CCharacterFactory.hpp"
|
#include "CCharacterFactory.hpp"
|
||||||
#include "GameGlobalObjects.hpp"
|
#include "GameGlobalObjects.hpp"
|
||||||
#include "CModelData.hpp"
|
#include "CModelData.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#include "GameGlobalObjects.hpp"
|
#include "GameGlobalObjects.hpp"
|
||||||
#include "CParticleGenInfo.hpp"
|
#include "CParticleGenInfo.hpp"
|
||||||
#include "Graphics/CSkinnedModel.hpp"
|
#include "Graphics/CSkinnedModel.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include "CSkinnedModel.hpp"
|
#include "CSkinnedModel.hpp"
|
||||||
|
#include "Character/CSkinRules.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include "CBeetle.hpp"
|
#include "CBeetle.hpp"
|
||||||
#include "World/CDamageInfo.hpp"
|
#include "World/CDamageInfo.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#include "GameGlobalObjects.hpp"
|
#include "GameGlobalObjects.hpp"
|
||||||
#include "CGameState.hpp"
|
#include "CGameState.hpp"
|
||||||
#include "MP1.hpp"
|
#include "MP1.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include "CResFactory.hpp"
|
#include "CResFactory.hpp"
|
||||||
#include "CFrontEndUI.hpp"
|
#include "CFrontEndUI.hpp"
|
||||||
#include "GameGlobalObjects.hpp"
|
#include "GameGlobalObjects.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include "CNewIntroBoss.hpp"
|
#include "CNewIntroBoss.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include "CSpacePirate.hpp"
|
#include "CSpacePirate.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include "CWarWasp.hpp"
|
#include "CWarWasp.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
#include "Graphics/Shaders/CTexturedQuadFilter.hpp"
|
#include "Graphics/Shaders/CTexturedQuadFilter.hpp"
|
||||||
#include "Graphics/Shaders/CCameraBlurFilter.hpp"
|
#include "Graphics/Shaders/CCameraBlurFilter.hpp"
|
||||||
#include "Graphics/Shaders/CXRayBlurFilter.hpp"
|
#include "Graphics/Shaders/CXRayBlurFilter.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include "CGunController.hpp"
|
#include "CGunController.hpp"
|
||||||
|
#include "Character/CCharLayoutInfo.hpp"
|
||||||
|
|
||||||
namespace urde
|
namespace urde
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user