Configurar la ruta de la biblioteca de rizos en cmake

Descargué "curl library" para usar con una aplicación de terceros. Cuando ejecuto el archivo cmake incluido, aparece el siguiente error. Por favor, ayúdame. Lo aprecio:

> The C compiler identification is MSVC 18.0.30501.0
    >     The CXX compiler identification is MSVC 18.0.30501.0
    >     Check for working C compiler using: Visual Studio 12 2013
    >     Check for working C compiler using: Visual Studio 12 2013 -- works
    >     Detecting C compiler ABI info
    >     Detecting C compiler ABI info - done
    >     Check for working CXX compiler using: Visual Studio 12 2013
    >     Check for working CXX compiler using: Visual Studio 12 2013 -- works
    >     Detecting CXX compiler ABI info
    >     Detecting CXX compiler ABI info - done
    >     Could NOT find CURL (missing:  CURL_LIBRARY) (found version "7.38.0")
    >     CMake Error at CMakeLists.txt:49 (MESSAGE):
    >       Could not find the CURL library and development files.  
    >     
    >     Configuring incomplete, errors occurred!
    >     See also "C:/BUILD/CMakeFiles/CMakeOutput.log".

Configuré la variable de entorno para "CURL_LIBRARY" en Windows para que apunte a la ubicación de la instalación de los archivos de la biblioteca para curl, pero cmake aún no puede encontrarlo aunque indica que se detectó la versión 7.38.0 en mi sistema.

Gracias por la ayuda..

EDITAR: archivo cMakeLists.txt

  ...
# Look for required libraries
SET(requiredlibs)

FIND_PACKAGE(CURL)
IF(CURL_FOUND)
  INCLUDE_DIRECTORIES(${CURL_INCLUDE_DIR})
  SET(requiredlibs ${requiredlibs} ${CURL_LIBRARIES} )
ELSE(CURL_FOUND)
  MESSAGE(FATAL_ERROR "Could not find the CURL library and development files.")
ENDIF(CURL_FOUND)
   ...

Configuré los directorios include y lib en la variable de entorno de Windows, pero no cambié.

EDITAR: este es el archivo completo del proyecto:proyecto cmake.

Respuestas a la pregunta(1)

Su respuesta a la pregunta