I have a C++ project that contains source files. For an external project, there are some folders I need to search for included libraries:
/home/data/lib/wisenet /home/data/lib/wise_log /home/data/lib/wise_rs_device /home/data/lib/json /home/data/lib/wise_versioning What must I write to include these external libraries in CMake? These folders contain only interface resources (h files and .a libraries).
I tried to include these directories like this:
include_directories( /home/data/lib/wisenet /home/data/lib/wise_log ... etc ) And I don't understand how to correctly add the lib files such as libwise_rs_device.a.