As I told you in this other thread, the CMAKE_INCLUDE_PATH
and CMAKE_LIBRARY_PATH
are environment variables, and they contain a list of paths that cmake ought to use in order to find the libraries on your system. You should definitely not set them as command-line argument to cmake. What is the output if you simply run this command:
cmake ..
In other words, without any options at all. All the options that you have put in the command line as per your last post, were wrong. You shouldn't define individual tokens like ZLIB_INCLUDE_DIR
in the command-line. All your libraries seem to be installed on the C:\
directory, there should be not problem for cmake to find them automatically, as long as you leave the variables CMAKE_INCLUDE_PATH
and CMAKE_LIBRARY_PATH
intact, or make sure that C:\
is listed in them, when you look at their values in the environment variable listing of your computer.