The following steps are meant to be used on a development server.
- Compilar proyecto
$ g++ pokemon.c -o pokemon $(pkg-config --cflags --libs allegro-5 allegro_main-5)- Enlazar bien las librerias
g++ pokemon.c -o pokemon $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5) g++ pokemon.c -o pokemon $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5) g++ pokemon.c -o pokemon $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5) g++ -o conexion conexion.c $(mysql_config --cflags --libs) g++ http.c -o http -lcurl g++ -I/usr/include/jsoncpp jsoncpp.cpp -ljsoncpp g++ -I/usr/include/jsoncpp jsoncpp.c -ljsoncpp g++ http.c -o http $(pkg-config --cflags --libs -lcurl)
```bash
g++ pokemondb.c -o pokemondb $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 mysqlclient) g++ pokemondb.c -o pokemondb $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 libcurl)- Compilar proyecto en lenguaje c jsonc #include <json-c/json.h>
gcc json.c -o json $(pkg-config --cflags --libs json-c)- Forma directa, aqui la diferencia es la letra l y luego nombre libreria
gcc json.c -o json -ljson-c- Compilar proyecto en lenguaje cpp jsonc #include #include <json/json.h>
g++ jsoncpp.c -o jsoncpp $(pkg-config --cflags --libs jsoncpp)- Forma directa, aqui la diferencia es la letra l y luego nombre libreria
g++ jsoncpp.c -o jsoncpp -ljsoncpp
- Iniciar proyecto
```bash
$ ./pokemon- Funciona con varias librerias #include <json/json.h>
g++ jsonapi.c -o jsonapi $(pkg-config --cflags --libs jsoncpp libcurl) g++ best.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 jsoncpp libcurl) g++ display2.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5 jsoncpp libcurl) g++ moverbitmap.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5 jsoncpp libcurl) g++ moverbitmap.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5 jsoncpp libcurl) && ./o g++ ex_disable_screensaver.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5 jsoncpp libcurl) g++ ex_bitmap.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5 jsoncpp libcurl) g++ ex_mouse_events.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5 jsoncpp libcurl) g++ pokemonmouse.c -o o $(pkg-config --cflags --libs allegro-5 allegro_main-5 allegro_primitives-5 allegro_image-5 allegro_font-5 jsoncpp libcurl) && ./o