From f8115620d8cf77392ddc40d0af4557c53c785894 Mon Sep 17 00:00:00 2001 From: highway900 Date: Sun, 29 Jul 2018 16:57:26 +1000 Subject: [PATCH] use triple tags for better readability --- Working-on-macOS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Working-on-macOS.md b/Working-on-macOS.md index df76a6f..77efb8b 100644 --- a/Working-on-macOS.md +++ b/Working-on-macOS.md @@ -96,7 +96,9 @@ You may do the otool check with the file in raylib/src/libs/osx/libraylib.a here copy raylib/src/libs/osx/libraylib.a to your project. 4. Build your project! -`clang -framework OpenAL -framework CoreVideo -framework IOKit -framework Cocoa -framework GLUT -framework OpenGL libraylib.a libglfw3.a my_app.c -o my_app` +``` +clang -framework OpenAL -framework CoreVideo -framework IOKit -framework Cocoa -framework GLUT -framework OpenGL libraylib.a libglfw3.a my_app.c -o my_app +``` Check for warnings! This can tell you if a library you're linking to was not built for OSX 10.9, in which case you'll need to rebuild that too.