Great, following your advice also worked on my machine too. Looks like I neglected to add this linker flag:
-L /home/johnny/casablanca/Release/build.release/Binaries
I guess I mistakenly assumed the
export LD_LIBRARY_PATH=/home/johnny/casablanca/Release/build.release/Binaries
command took care of that.
Also, is it possible to use something like pkg-config for Casablanca? For example, when working on GTKMM program in Code::Blocks (or even the terminal), I can just add:
This would sure be helpful for relative novices to be able to quickly start learning Casablanca.
I guess I should learn how to use build toolchains better, I sure need help with them haha. It seems complicated kind of. Would learning 'Make' or 'CMake' be the best first step do you think?
Thanks alot for your help BTW, I appreciate it!
-L /home/johnny/casablanca/Release/build.release/Binaries
I guess I mistakenly assumed the
export LD_LIBRARY_PATH=/home/johnny/casablanca/Release/build.release/Binaries
command took care of that.
Also, is it possible to use something like pkg-config for Casablanca? For example, when working on GTKMM program in Code::Blocks (or even the terminal), I can just add:
pkg-config gtkmm-3.0 --cflags
to Compiler settings > Other options, and pkg-config gtkmm-3.0 --libs
to Linker settings > Other linker options.This would sure be helpful for relative novices to be able to quickly start learning Casablanca.
I guess I should learn how to use build toolchains better, I sure need help with them haha. It seems complicated kind of. Would learning 'Make' or 'CMake' be the best first step do you think?
Thanks alot for your help BTW, I appreciate it!