CMake not able to find OpenSSL library

前端 未结 13 2004
一生所求
一生所求 2020-11-27 09:53

I am trying to install a software, which uses cmake to install itself, when i give at commandlin cmake ..
it gives me following error in this file, CMakeLists.txt -----

13条回答
  •  青春惊慌失措
    2020-11-27 10:35

    Please install openssl from below link:
    https://code.google.com/p/openssl-for-windows/downloads/list
    then set the variables below:

    OPENSSL_ROOT_DIR=D:/softwares/visualStudio/openssl-0.9.8k_WIN32
    OPENSSL_INCLUDE_DIR=D:/softwares/visualStudio/openssl-0.9.8k_WIN32/include
    OPENSSL_LIBRARIES=D:/softwares/visualStudio/openssl-0.9.8k_WIN32/lib
    

提交回复
热议问题