Menu

geany-compile-build

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

this is for gtk3

compile option

gcc -Wall -c `pkg-config --cflags gtk+-3.0`  -DGDK_DISABLE_DEPRECATION_WARNINGS    "%f"  `pkg-config --libs gtk+-3.0`

build option

gcc -Wall   `pkg-config --cflags gtk+-3.0`  -DGDK_DISABLE_DEPRECATION_WARNINGS    "%f"  -o "%e"  `pkg-config --libs gtk+-3.0`

This is for c++ fltk

compile option

g++ -Wall -c "%f" -lfltk -lXext -lX11 -lm

build option

g++ -Wall -o "%e" "%f" -lfltk -lXext -lX11 -lm

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.