cmake: testnative can also be built on non-Linux

This commit is contained in:
Anonymous Maarten
2023-03-27 14:11:23 +02:00
parent 2a03ad2cbf
commit b8b852a55b
3 changed files with 17 additions and 7 deletions

View File

@@ -11,9 +11,18 @@
freely.
*/
#include "../src/SDL_internal.h"
#include <SDL3/SDL.h>
#include <SDL3/SDL_main.h>
#include <SDL3/SDL_test.h>
/* Hack to avoid dynapi renaming */
#include "../src/dynapi/SDL_dynapi.h"
#ifdef SDL_DYNAMIC_API
#undef SDL_DYNAMIC_API
#endif
#include "../src/SDL_internal.h"
#include <stdio.h>
#include <string.h>