This repository has been archived on 2025-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
helpless/build.c

38 lines
975 B
C
Raw Normal View History

///
// Build config stuff
2024-07-02 19:12:31 +02:00
#define RUN_TESTS 1
// This is only for people developing oogabooga!
#define OOGABOOGA_DEV 1
#define ENABLE_PROFILING 0
// Requires CPU to support at least SSE1 but I will be very surprised if you find a system today which don't.
#define ENABLE_SIMD 1
2024-07-02 19:12:31 +02:00
#define INITIAL_PROGRAM_MEMORY_SIZE MB(5)
typedef struct Context_Extra {
int monkee;
} Context_Extra;
// This needs to be defined before oogabooga if we want extra stuff in context
#define CONTEXT_EXTRA Context_Extra
#define GFX_RENDERER GFX_RENDERER_D3D11
2024-07-02 19:12:31 +02:00
// This defaults to "entry", but we can set it to anything (except "main" or other existing proc names"
#define ENTRY_PROC entry
// Ooga booga needs to be included AFTER configuration and BEFORE the program code
#include "oogabooga/oogabooga.c"
2024-07-02 12:48:28 +07:00
//
// Comment & Uncomment to swap projects
2024-07-03 11:21:48 +02:00
//#include "oogabooga/examples/renderer_stress_test.c"
2024-07-02 19:12:31 +02:00
// #include "oogabooga/examples/minimal_game_loop.c"
2024-07-03 11:21:48 +02:00
#include "entry_randygame.c"