htmie

Optical properties of water droplets
git clone git://git.meso-star.fr/htmie.git
Log | Files | Refs | README | LICENSE

commit ac7b5604e0b38991b1f8867319e63f92516ac24e
parent 369a5505efad32985404d073b61b73de073a4984
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu,  2 Apr 2020 12:22:48 +0200

Merge remote-tracking branch 'origin/master' into develop

Diffstat:
Mcmake/CMakeLists.txt | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -39,6 +39,9 @@ include_directories( ${NETCDF_C_INCLUDE_DIRS} ${RSys_INCLUDE_DIR}) +# Required by the netcdf.h header that in some versions contains C99 comments +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu89") + if(CMAKE_COMPILER_IS_GNUCC) set(MATH_LIB m) endif() @@ -48,7 +51,7 @@ endif() ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 0) -set(VERSION_PATCH 0) +set(VERSION_PATCH 1) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(HTMIE_FILES_SRC htmie.c)