Pedro Vicente

Results 22 comments of Pedro Vicente

@hmb1 currently it has static CRT already. This README.md shows the steps, some files have to be manually edited because the maintainers of some dependencies like HDF5 don't want to...

what bld.bat does is to git clone HDF5 from here https://github.com/live-clones/hdf5 and then doing cd hdf5 mkdir build cd build cmake .. "other options" I just tried this from a...

@RBCanelas Viva... I just noticed you are part of my old university team https://github.com/Mohid-Water-Modelling-System/Mohid small world... I actually wrote the initial HDF5 code for it... back in the day :-)

is this what you mean? if file netcdf_meta.h exists , NCO defines NC_HAVE_META_H ``` find_path(path_netcdf_meta_h netcdf_meta.h PATHS ${NETCDF_INCLUDE}) if(path_netcdf_meta_h) message("-- Found netcdf_meta.h in " ${path_netcdf_meta_h}) add_definitions(-DNC_HAVE_META_H) else() message("-- netcdf_meta.h was...

my latest commit seems to have fixed this, AppVeyor was a success build

>> NCO does not need to define 'NC_HAVE_META_H' because the header file netcdf.h not in the netcdf version I have locally, 4.6.0; so this add_definitions(-DNC_HAVE_META_H) must be in CMakeLists.txt for...

this is simply a nasty cast or conversion from std::string to char * instead of trying to fix that, it seems that the generic fall trough case of ``` out...

to detect unixODBC I use this on my Cmake ``` if(UNIX) find_path(ODBC_INCLUDE sql.h ${find_opt}) if(NOT ODBC_INCLUDE) message(FATAL_ERROR "sql.h header file not found") else() message("-- Found sql.h header file at: "...

> well it seems its more of a bad description of what should happen. > > client connects to third party api online. > > expected a client / server...