I want to include the use of GNU Octave in my Urho application. I found this for compiling it for standalone programs, but it uses a different command to build those files. How do I incorporate that into Urho’s build system (what to edit, what to put in, etc.), or at the very least, can someone point me in the right direction?
You won’t link the object files, you’ll link your precompiled octave static/dynamic library (plus the 100+ GNU dependencies it probably has) and specify the header paths for it.
Ideally you just port the makefiles over to CMake, but it’s a GNU project so that’s a pipe-dream.