aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-08-25 14:35:47 -0400
committertcsullivan <tullivan99@gmail.com>2019-08-25 14:35:47 -0400
commite6bd96e1aff62d0b0379f5b1a17a311a811e2206 (patch)
treefc24a4e96299275d04d5604abd672788e53c508b
parent3fbdd50da1e16f76d34d212860095a2b0acf85a8 (diff)
SDL_Init and SDL_Quit
-rw-r--r--Makefile2
-rw-r--r--src/main.cpp11
2 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 60019f6..9d2f336 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@
CC = gcc
CXX = g++
-LIBS =
+LIBS = -lSDL2
CXXFLAGS = -ggdb -std=c++17 \
-Wall -Wextra -Werror -pedantic \
diff --git a/src/main.cpp b/src/main.cpp
index a8b46c0..8528f0a 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -18,11 +18,22 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
+#include <SDL2/SDL.h>
+
#include <iostream>
int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[])
{
+ if (SDL_Init(0) != 0) {
+ std::cerr << "SDL failed to initialize: " << SDL_GetError() <<
+ std::endl;
+ return -1;
+ } else {
+ atexit(SDL_Quit);
+ }
+
std::cout << "Hello, world!" << std::endl;
+
return 0;
}