As the subject suggests I am having trouble calling up the raylib library when trying to run debug compiler on the initial axe game app.
I am on OSX Sonoma m2 pro chip
I’ve installed raylib as directed, vs code as directed.
my app code so far is:
#include “raylib.h”
int main()
{
InitWindow(1350, 1200, “my window name”);
}