Mercurial > sdl-ios-xcode
view src/main/macos/Makefile.am @ 1296:f418917e0b7a
Fixed crash:
#include <SDL.h>
int main(int argc, char** argv)
{
SDL_Init(SDL_INIT_EVERYTHING);
SDL_SetVideoMode(640, 480, 0, SDL_FULLSCREEN);
SDL_ShowCursor(SDL_DISABLE);
SDL_Delay(1000);
SDL_SetVideoMode(640, 480, 0, SDL_FULLSCREEN | SDL_OPENGL);
SDL_Quit();
printf("Everything okay\n");
}
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 30 Jan 2006 13:30:44 +0000 |
parents | 55a86cfe6277 |
children |
line wrap: on
line source
# On OS X, install the SDL.rsrc. EXTRA_DIST = SDL_main.c SDL.rsrc rsrcdatadir = $(datadir)/sdl rsrcdata_DATA = \ SDL.rsrc SDL.rsrc: SDL.r /Developer/Tools/Rez -o $@ -useDF $< # The rsrc and export directory need to be copied into place # when building a distribution. dist-hook: cp -rp SDL.rsrc $(distdir) cp -rp exports $(distdir) (cd $(distdir)/exports && rm -rf `find . -name CVS`)