I'm trying to compile my code with these flags :
g++ load.cpp -o load -I/usr/local/include/allegro5 -Wall -L/usr/local/lib -lallegro `pkg-config --libs allegro-5 allegro_audio-5 allegro_dialog-5 allegro_image-5 allegro_memfile-5 allegro_primitives-5 allegro_acodec-5 allegro_color-5 allegro_font-5 allegro_main-5 allegro_physfs-5 allegro_ttf-5`
And I receive this error :
load.cpp:3:10: fatal error: allegro5/allegro_native_dialog.h: No such file or directory
# include <allegro5/allegro_native_dialog.h>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
I researched and I found these questions : Allegro 5 No such file or directory, Allegro native dialogues not recognized ... but nothing works.
Ps : I installed all dependencies and updated the entire system.
How can I fix it, is there a way to install this lib or pass the path to g++ ?