[netcdfgroup] cmake option NC_USE_STATIC_CRT

I am trying to build a script that clones and builds a series of libraries , 
including netcdf

On Windows, in a command prompt, I did


git clone https://github.com/Unidata/netcdf-c
cd netcdf-c
mkdir build
cd build
cmake .. -DNC_USE_STATIC_CRT=ON

and I get this error
CMake Error at CMakeLists.txt:334 (specify_static_crt_flag):

  Unknown CMake command "specify_static_crt_flag".

this is the code called

 IF(MSVC)
  OPTION(NC_USE_STATIC_CRT "Use static CRT Libraries ('\\MT')." OFF)
  IF(NC_USE_STATIC_CRT)
    SET(USE_STATIC_CRT ON)
    specify_static_crt_flag()
  ENDIF()
ENDIF()

"specify_static_crt_flag" is a macro included in CMakeLists.txt

MACRO(specify_static_crt_flag)

so, I'm not sure why this gives that error

thanks

----------------------
Pedro Vicente
http://www.space-research.org/













  • 2017 messages navigation, sorted by:
    1. Thread
    2. Subject
    3. Author
    4. Date
    5. ↑ Table Of Contents
  • Search the netcdfgroup archives: