[C++] Allegro dev-C++ nie znajduje biblioteki

Witam, zainstalowałem bibliotekę Allegro przez Pomoc -> O Dev-C++… -> Sprawdź uaktualnienia -> Allegro 4.22.

Nie wiem dlaczego ale podczas próby kompilacji programu:

#include 


void init();

void deinit();


int main() {

	init();


	while (!key[KEY_ESC]) {

		/* put your code here */

	}


	deinit();

	return 0;

}

END_OF_MAIN()


void init() {

	int depth, res;

	allegro_init();

	depth = desktop_color_depth();

	if (depth == 0) depth = 32;

	set_color_depth(depth);

	res = set_gfx_mode(GFX_AUTODETECT_WINDOWED, 640, 480, 0, 0);

	if (res != 0) {

		allegro_message(allegro_error);

		exit(-1);

	}


	install_timer();

	install_keyboard();

	install_mouse();

	/* add other initializations here */

}


void deinit() {

	clear_keybuf();

	/* add other deinitializations here */

}

Pojawia się błąd:

Co robić?

Możesz spróbować zrobić:

#include

A przy okazji zapytam - jaką masz wersję Windowsa, może 64-bit? Bo z tego co kojarzę, to Dev-C++ miewa jakieś problemy z poprawnym działaniem DevPack’ów. Możesz sobie ręcznie tą bibliotekę pobrać i skonfigurować.

Niestety kod

nie działa, pobrałem allegro-5.0.10, mam w środku folder Allegro, jak je teraz skonfigurować?