Renaming
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 5m55s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 5m43s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 6m36s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 6m33s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 6m42s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 6m33s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 7m59s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 7m51s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 6m26s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 6m31s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 7m28s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 7m27s
Bigfoot / Clang Format Checks (push) Successful in 12s

This commit is contained in:
2026-07-28 18:55:28 +02:00
parent 04be41484e
commit 055ac4b460
15 changed files with 30 additions and 30 deletions
@@ -1,9 +1,9 @@
/********************************************************************* /*********************************************************************
* \file AssetA_fwd.cpp * \file AssetARef.cpp
* *
* \author Romain BOULLARD * \author Romain BOULLARD
* \date May 2026 * \date May 2026
*********************************************************************/ *********************************************************************/
#include <AssetsForTesting/Asset/AssetA_fwd.hpp> #include <AssetsForTesting/Asset/AssetARef.hpp>
ASSET_REF_IMPL(AssetA, ::Bigfoot::AssetA) ASSET_REF_IMPL(AssetA, ::Bigfoot::AssetA)
@@ -1,9 +1,9 @@
/********************************************************************* /*********************************************************************
* \file AssetB_fwd.cpp * \file AssetBRef.cpp
* *
* \author Romain BOULLARD * \author Romain BOULLARD
* \date May 2026 * \date May 2026
*********************************************************************/ *********************************************************************/
#include <AssetsForTesting/Asset/AssetB_fwd.hpp> #include <AssetsForTesting/Asset/AssetBRef.hpp>
ASSET_REF_IMPL(AssetB, ::Bigfoot::AssetB) ASSET_REF_IMPL(AssetB, ::Bigfoot::AssetB)
@@ -1,9 +1,9 @@
/********************************************************************* /*********************************************************************
* \file AssetC_fwd.cpp * \file AssetCRef.cpp
* *
* \author Romain BOULLARD * \author Romain BOULLARD
* \date May 2026 * \date May 2026
*********************************************************************/ *********************************************************************/
#include <AssetsForTesting/Asset/AssetC_fwd.hpp> #include <AssetsForTesting/Asset/AssetCRef.hpp>
ASSET_REF_IMPL(AssetC, ::Bigfoot::AssetC) ASSET_REF_IMPL(AssetC, ::Bigfoot::AssetC)
@@ -1,6 +1,6 @@
include "Engine/Asset/Reference.fbs"; include "Engine/Asset/Reference.fbs";
native_include "AssetsForTesting/Asset/AssetA_fwd.hpp"; native_include "AssetsForTesting/Asset/AssetARef.hpp";
namespace Flat.Bigfoot; namespace Flat.Bigfoot;
@@ -4,8 +4,8 @@
* \author Romain BOULLARD * \author Romain BOULLARD
* \date April 2026 * \date April 2026
*********************************************************************/ *********************************************************************/
#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETA_HPP #ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETA_HPP
#define BIGFOOT_ENGINETESTS_ASSET_ASSETA_HPP #define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETA_HPP
#include <Engine/Asset/Asset.hpp> #include <Engine/Asset/Asset.hpp>
#include <AssetsForTesting/Asset/AssetA_generated.hpp> #include <AssetsForTesting/Asset/AssetA_generated.hpp>
@@ -1,11 +1,11 @@
/********************************************************************* /*********************************************************************
* \file AssetA_fwd.hpp * \file AssetARef.hpp
* *
* \author Romain BOULLARD * \author Romain BOULLARD
* \date May 2026 * \date May 2026
*********************************************************************/ *********************************************************************/
#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETA_FWD_HPP #ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETAREF_HPP
#define BIGFOOT_ENGINETESTS_ASSET_ASSETA_FWD_HPP #define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETAREF_HPP
#include <Engine/Asset/AssetHelper.hpp> #include <Engine/Asset/AssetHelper.hpp>
namespace Bigfoot namespace Bigfoot
@@ -16,7 +16,7 @@ static_assert(FLATBUFFERS_VERSION_MAJOR == 25 &&
#include "Engine/Asset/Reference.hpp" #include "Engine/Asset/Reference.hpp"
#include "System/UUID/UUID.hpp" #include "System/UUID/UUID.hpp"
#include "Engine/Asset/Reference.hpp" #include "Engine/Asset/Reference.hpp"
#include "AssetsForTesting/Asset/AssetA_fwd.hpp" #include "AssetsForTesting/Asset/AssetARef.hpp"
#include "Engine/Asset/Reference_generated.hpp" #include "Engine/Asset/Reference_generated.hpp"
#include "EASTL/unique_ptr.h" #include "EASTL/unique_ptr.h"
@@ -2,7 +2,7 @@ include "Engine/Asset/Reference.fbs";
include "AssetsForTesting/Asset/AssetA.fbs"; include "AssetsForTesting/Asset/AssetA.fbs";
native_include "AssetsForTesting/Asset/AssetB_fwd.hpp"; native_include "AssetsForTesting/Asset/AssetBRef.hpp";
namespace Flat.Bigfoot; namespace Flat.Bigfoot;
@@ -4,8 +4,8 @@
* \author Romain BOULLARD * \author Romain BOULLARD
* \date April 2026 * \date April 2026
*********************************************************************/ *********************************************************************/
#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETB_HPP #ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETB_HPP
#define BIGFOOT_ENGINETESTS_ASSET_ASSETB_HPP #define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETB_HPP
#include <Engine/Asset/Asset.hpp> #include <Engine/Asset/Asset.hpp>
#include <AssetsForTesting/Asset/AssetB_generated.hpp> #include <AssetsForTesting/Asset/AssetB_generated.hpp>
@@ -1,11 +1,11 @@
/********************************************************************* /*********************************************************************
* \file AssetB_fwd.hpp * \file AssetBRef.hpp
* *
* \author Romain BOULLARD * \author Romain BOULLARD
* \date May 2026 * \date May 2026
*********************************************************************/ *********************************************************************/
#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETB_FWD_HPP #ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETBREF_HPP
#define BIGFOOT_ENGINETESTS_ASSET_ASSETB_FWD_HPP #define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETBREF_HPP
#include <Engine/Asset/AssetHelper.hpp> #include <Engine/Asset/AssetHelper.hpp>
namespace Bigfoot namespace Bigfoot
@@ -16,8 +16,8 @@ static_assert(FLATBUFFERS_VERSION_MAJOR == 25 &&
#include "Engine/Asset/Reference.hpp" #include "Engine/Asset/Reference.hpp"
#include "System/UUID/UUID.hpp" #include "System/UUID/UUID.hpp"
#include "Engine/Asset/Reference.hpp" #include "Engine/Asset/Reference.hpp"
#include "AssetsForTesting/Asset/AssetA_fwd.hpp" #include "AssetsForTesting/Asset/AssetARef.hpp"
#include "AssetsForTesting/Asset/AssetB_fwd.hpp" #include "AssetsForTesting/Asset/AssetBRef.hpp"
#include "Engine/Asset/Reference_generated.hpp" #include "Engine/Asset/Reference_generated.hpp"
#include "AssetsForTesting/Asset/AssetA_generated.hpp" #include "AssetsForTesting/Asset/AssetA_generated.hpp"
@@ -3,7 +3,7 @@ include "Engine/Asset/Reference.fbs";
include "AssetsForTesting/Asset/AssetA.fbs"; include "AssetsForTesting/Asset/AssetA.fbs";
include "AssetsForTesting/Asset/AssetB.fbs"; include "AssetsForTesting/Asset/AssetB.fbs";
native_include "AssetsForTesting/Asset/AssetC_fwd.hpp"; native_include "AssetsForTesting/Asset/AssetCRef.hpp";
namespace Flat.Bigfoot; namespace Flat.Bigfoot;
@@ -4,8 +4,8 @@
* \author Romain BOULLARD * \author Romain BOULLARD
* \date April 2026 * \date April 2026
*********************************************************************/ *********************************************************************/
#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETC_HPP #ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETC_HPP
#define BIGFOOT_ENGINETESTS_ASSET_ASSETC_HPP #define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETC_HPP
#include <Engine/Asset/Asset.hpp> #include <Engine/Asset/Asset.hpp>
#include <AssetsForTesting/Asset/AssetC_generated.hpp> #include <AssetsForTesting/Asset/AssetC_generated.hpp>
@@ -1,11 +1,11 @@
/********************************************************************* /*********************************************************************
* \file AssetC_fwd.hpp * \file AssetCRef.hpp
* *
* \author Romain BOULLARD * \author Romain BOULLARD
* \date May 2026 * \date May 2026
*********************************************************************/ *********************************************************************/
#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETC_FWD_HPP #ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETCREF_HPP
#define BIGFOOT_ENGINETESTS_ASSET_ASSETC_FWD_HPP #define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETCREF_HPP
#include <Engine/Asset/AssetHelper.hpp> #include <Engine/Asset/AssetHelper.hpp>
namespace Bigfoot namespace Bigfoot
@@ -16,9 +16,9 @@ static_assert(FLATBUFFERS_VERSION_MAJOR == 25 &&
#include "Engine/Asset/Reference.hpp" #include "Engine/Asset/Reference.hpp"
#include "System/UUID/UUID.hpp" #include "System/UUID/UUID.hpp"
#include "Engine/Asset/Reference.hpp" #include "Engine/Asset/Reference.hpp"
#include "AssetsForTesting/Asset/AssetA_fwd.hpp" #include "AssetsForTesting/Asset/AssetARef.hpp"
#include "AssetsForTesting/Asset/AssetB_fwd.hpp" #include "AssetsForTesting/Asset/AssetBRef.hpp"
#include "AssetsForTesting/Asset/AssetC_fwd.hpp" #include "AssetsForTesting/Asset/AssetCRef.hpp"
#include "Engine/Asset/Reference_generated.hpp" #include "Engine/Asset/Reference_generated.hpp"
#include "AssetsForTesting/Asset/AssetA_generated.hpp" #include "AssetsForTesting/Asset/AssetA_generated.hpp"
#include "AssetsForTesting/Asset/AssetB_generated.hpp" #include "AssetsForTesting/Asset/AssetB_generated.hpp"