Ich habe eine CLion project. Hier ist meine CMakeLists.txt:Kann OpenSSL-Bibliotheken nicht mit CLion C++ - Programm verbinden
cmake_minimum_required(VERSION 3.3)
project(Project)
> set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
> include_directories(/usr/include/openssl/)
> link_libraries(openssl)
> set(SOURCE_FILES main.cpp Includes.h b.cpp b.h a.cpp
> a.h) add_executable(Project ${SOURCE_FILES})
Und hier ist Fehler, die ich bekomme:
[ 25%] Linking CXX executable Project /usr/bin/ld: cannot find -lopenssl
collect2: error: ld returned 1 exit status
Stellen Sie sicher, dass die Bibliothek auf Ihrem LD_LIBRARY_PATH haben – Learner
Und wie LD_LIBRARY_PATH zu überprüfen? Ist es eine Systemvariable? –
ich @ lnx: ~ # echo $ LD_LIBRARY_PATH - Es ist leer –