summaryrefslogtreecommitdiff
path: root/src/mplemmings.c
blob: bec74748e153c044db52a0a20bed6832015c9155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
  Copyright (C) 2013 Ludovic Pouzenc <lpouzenc@gmail.com>

  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.
*/

#include <SDL.h>
#if ! SDL_VERSION_ATLEAST(2,0,0) 
#error "This code is only for SDL 2+. No backward compatibility with previous SDL versions, sorry."
#endif

#include "mplemmings_config.h"
#include "utils.h"


int main(void) {
	SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION,SDL_LOG_PRIORITY_INFO,
		"Starting %s", PACKAGE_STRING
	);
	SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION,SDL_LOG_PRIORITY_INFO,
		"If any questions, please visit %s.", PACKAGE_URL
	);

	return 0;
}