2015-06-21 09:33:46 -06:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2023-01-09 10:41:41 -07:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
2022-11-26 02:41:46 -07:00
|
|
|
#ifndef SDL_build_config_h_
|
|
|
|
#define SDL_build_config_h_
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-01-07 16:40:09 -07:00
|
|
|
#include <SDL3/SDL_platform_defines.h>
|
2017-09-29 11:07:37 -06:00
|
|
|
|
2017-09-29 11:15:44 -06:00
|
|
|
/**
|
2022-11-26 02:41:46 -07:00
|
|
|
* \file SDL_build_config.h
|
2017-09-29 11:15:44 -06:00
|
|
|
*/
|
2017-09-29 11:07:37 -06:00
|
|
|
|
2017-09-29 11:15:44 -06:00
|
|
|
/* Add any platform that doesn't build using the configure system. */
|
|
|
|
#if defined(__WIN32__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_windows.h"
|
2022-11-23 11:41:43 -07:00
|
|
|
#elif defined(__WINRT__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_winrt.h"
|
2022-06-27 11:19:39 -06:00
|
|
|
#elif defined(__WINGDK__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_wingdk.h"
|
2022-07-01 14:59:14 -06:00
|
|
|
#elif defined(__XBOXONE__) || defined(__XBOXSERIES__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_xbox.h"
|
2022-11-25 17:00:06 -07:00
|
|
|
#elif defined(__MACOS__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_macos.h"
|
2022-11-25 17:00:06 -07:00
|
|
|
#elif defined(__IOS__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_ios.h"
|
2017-09-29 11:15:44 -06:00
|
|
|
#elif defined(__ANDROID__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_android.h"
|
2021-05-19 09:24:33 -06:00
|
|
|
#elif defined(__EMSCRIPTEN__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_emscripten.h"
|
2022-05-03 09:51:49 -06:00
|
|
|
#elif defined(__NGAGE__)
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_ngage.h"
|
2015-06-21 09:33:46 -06:00
|
|
|
#else
|
2018-10-14 14:56:56 -06:00
|
|
|
/* This is a minimal configuration just to get SDL running on new platforms. */
|
2022-11-26 02:41:46 -07:00
|
|
|
#include "SDL_build_config_minimal.h"
|
2017-09-29 11:15:44 -06:00
|
|
|
#endif /* platform config */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2017-09-29 11:15:44 -06:00
|
|
|
#ifdef USING_GENERATED_CONFIG_H
|
2022-11-26 02:41:46 -07:00
|
|
|
#error Wrong SDL_build_config.h, check your include path?
|
2015-06-21 09:33:46 -06:00
|
|
|
#endif
|
|
|
|
|
2022-11-26 02:41:46 -07:00
|
|
|
#endif /* SDL_build_config_h_ */
|