I Ubuntu, I am learning about cmake and make, and just trying a simple example. I have two directories: src
and build
. In src
, I have two files: main.cpp
, and CMakeLists.txt
, which has (only) the following text:
add_executable(test main.cpp)
link_directories(/usr/lib/x86_64-linux-gnu)
target_link_libraries(test protobuf)
In /usr/lib/x86_64-linux-gnu
, there is a shared library called libprotobuf.so
, which I want to link against. My main.cpp
uses functions in this library, by including the releveant header file, #include <google/protobuf/message.h>
.
Now, in my build
directory, I run cmake ../src
, and then make
. However, I then get linker errors telling me that there are undefined references to some of the functions in the protobuf library. If I do a search through all the files and subdirectories in build
, there is not mention of anything related to protobuf.
However, if I remove the link_directories
line in my CMakeLists.txt
file, and instead write the full path to the library when specifying the executable, i.e. target_link_libraries(test /usr/lib/x86_64-linux-gnu/libprotobuf.so)
, it compiles and links fine.
Why is link_directories
not allowing cmake to find this library?
Cannot specify link libraries for target "test" which is not built by this project.
– Karnivaurusfind_package(Protobuf)
instead of trying to locate it directly. See cmake.org/cmake/help/v3.3/module/FindProtobuf.html for further information. – tamas.kenez