mirror of
https://onedev.site.tesses.net/tesses-framework
synced 2026-02-08 15:55:46 +00:00
12 lines
260 B
C++
12 lines
260 B
C++
#pragma once
|
|
#if defined(TESSESFRAMEWORK_ENABLE_SDL2)
|
|
#define SDL_MAIN_HANDLED
|
|
#include <SDL2/SDL.h>
|
|
#if defined(TESSESFRAMEWORK_FETCHCONTENT)
|
|
#include <SDL_image.h>
|
|
#include <SDL_ttf.h>
|
|
#else
|
|
#include <SDL2/SDL_image.h>
|
|
#include <SDL2/SDL_ttf.h>
|
|
#endif
|
|
#endif |