From cdf6a83af63fe946e0b84cb08245ab02e1850d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Till=20W=C3=BCbbers?= Date: Sat, 29 Mar 2025 06:22:14 +0100 Subject: [PATCH] cleanup --- src/CMakeLists.txt | 2 +- src/game/rendering/Rendering.cpp | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8009357..f8cd825 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,12 +2,12 @@ cmake_minimum_required(VERSION 3.10) project(PuzGameProj) if (MSVC) -add_definitions(-D_CRT_SECURE_NO_WARNINGS) else() add_compile_options(-g -gcodeview) add_link_options(-fuse-ld=lld -g -Wl,--pdb=) endif() +add_definitions(-D_CRT_SECURE_NO_WARNINGS) add_compile_definitions("$<$:DEBUG>") # set the output directory for built objects. diff --git a/src/game/rendering/Rendering.cpp b/src/game/rendering/Rendering.cpp index 5a046a5..be48267 100644 --- a/src/game/rendering/Rendering.cpp +++ b/src/game/rendering/Rendering.cpp @@ -8,14 +8,10 @@ #include "SDL3/SDL_events.h" #include "backends/imgui_impl_sdl3.h" -#include "bgfx/c99/bgfx.h" #include "bgfx/defines.h" -#include "bgfx/platform.h" #include "bx/bx.h" -#include "bx/constants.h" #include "bx/debug.h" #include "bx/filepath.h" -#include "bx/math.h" #include "bx/string.h" #include "bx/timer.h" #include