What's new

[CMake] Known Error(s) Fixes

Tion

Veteran Member
38
2015
4
"GIT WAS NOT FOUND ON YOUR SYSTEM"

Error Preview:
Code:
      Git was NOT FOUND on your system - did you forget to install a recent version, or setting the path to it?
      Observe that for revision hash/date to work you need at least version 1.7
Call Stack (most recent call first):
  CMakeLists.txt:65 (find_package)

FIX:

  • Open CMake
  • Press 'Configure'
  • When the Error Arrives Mark "WITHOUT_GIT"

1b05edcfaf.png








BOOST_ROOT

Error Preview:
Code:
No BOOST_ROOT environment variable could be found! Please make sure it is
set and the points to your Boost installation.
Call Stack (most recent call first):
CMakeLists.txt:60 (include)

FIX:

Computer -> System Properties -> Advanced System Settings -> Environment Variables -> New System Variable -> Variable Name: BOOST_ROOT, Variable value: Your/Boost/Path.








"OpenSSL"

Error Preview
Code:
Could NOT find OpenSSL (missing: OPENSSL_LIBRARIES OPENSSL_INCLUDE_DIR)
Call Stack (most recent call first):
  C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:315 (_FPHSA_FAILURE_MESSAGE)
  cmake/macros/FindOpenSSL.cmake:175 (find_package_handle_standard_args)
  CMakeLists.txt:53 (find_package)


Configuring incomplete, errors occurred!

FIX:

Download the FULL version of OpenSSL ( Not the LIGHT ):

http://slproweb.com/products/Win32OpenSSL.html



Know any other error(s)? Make sure you leave it as a reply so I can add it! :)
 
  • Like
Reactions: ExO
Top