This commit is contained in:
Till Wübbers
2025-03-29 06:22:14 +01:00
parent 77a6a0a510
commit cdf6a83af6
2 changed files with 1 additions and 5 deletions

View File

@@ -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("$<$<CONFIG:DEBUG>:DEBUG>")
# set the output directory for built objects.

View File

@@ -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 <bgfx/bgfx.h>