Bassix GTK3 webkit browser Wiki
A very small gtk3-webkit browser that runs well on the raspberry pi3
Brought to you by:
big-bass
Using geany having compile and build commands
eliminates the need for a make file and testing demo code is easy
this is done in build--->set build commands so we only need to add this one time
and then every time we compile and build it is automatic and run works on the binary also
gcc -Wall -c `pkg-config --cflags gtk+-3.0` -DGDK_DISABLE_DEPRECATION_WARNINGS "%f" `pkg-config --libs gtk+-3.0`
gcc -Wall `pkg-config --cflags gtk+-3.0` -DGDK_DISABLE_DEPRECATION_WARNINGS "%f" -o "%e" `pkg-config --libs gtk+-3.0`
g++ -Wall -c "%f" -lfltk -lXext -lX11 -lm
g++ -Wall -o "%e" "%f" -lfltk -lXext -lX11 -lm