diff --git a/Compile-for-OSX.md b/Compile-for-OSX.md index 726ef05..c92f0f3 100644 --- a/Compile-for-OSX.md +++ b/Compile-for-OSX.md @@ -64,7 +64,7 @@ _Tutorial written by Aleix Rafegas and translated to English by Ray_ 2) Setup build script -You can create a build.sh file that you can run to compile your project. In the example below your project is named test.cpp (for C++) and compiles to test. +You can create a build.sh file that you can run to compile your project. In the example below your project is named my_app.cpp (for C++) and compiles to my_app. ```` clang++ -I/w/raylib_build/raylib/release/osx -L/usr/local/lib -L/w/raylib_build/raylib/release/osx -lglfw -lraylib -framework GLUT -framework OpenGL -framework Cocoa my_app.cpp -o my_app