M300433/cmake improvements and define cleanups
Merge request reports
Activity
added 11 commits
-
5c500eb0...efd37a20 - 9 commits from branch
develop
- 17a6ffa8 - added feature functions to remove reliance on ifdefs in other libraries
- 8abd8f88 - CMakeLists updated, removed scatted defines
-
5c500eb0...efd37a20 - 9 commits from branch
added 8 commits
-
5e113671...38ec71cd - 5 commits from branch
develop
- a428097d - added feature functions to remove reliance on ifdefs in other libraries
- 5a0650c3 - CMakeLists updated, removed scatted defines
- f79cd8a1 - added cmake files to gitignore
Toggle commit list-
5e113671...38ec71cd - 5 commits from branch
added 1 commit
- 07f0fb07 - added options for enableing internal libraries
added 1 commit
- 8bd1681a - added options to en-/disable libraries in cmake
added 7 commits
-
932dd558 - 1 commit from branch
develop
- 83a201ca - added feature functions to remove reliance on ifdefs in other libraries
- 0fb50987 - CMakeLists updated, removed scatted defines
- bebb32b4 - added cmake files to gitignore
- b216d9dc - added pthread to CMakeLists.txt
- b77ad5a5 - added options for enableing internal libraries
- c8067751 - added options to en-/disable libraries in cmake
Toggle commit list-
932dd558 - 1 commit from branch
assigned to @m300433
requested review from @m214003
Cmake Build funktioniert bei mir problemlos, aber einige Test laufen nicht. Soll ich trotzdem mergen?
58% tests passed, 8 tests failed out of 19 Total Test time (real) = 3.44 sec The following tests FAILED: 2 - cksum_read.run (Failed) 6 - deco2d_model.run (Failed) 7 - ensure_array_size.run (Failed) 9 - pio_write_setup_grid.run (Failed) 10 - simple_model.run (Failed) 11 - simple_model_helper.run (Failed) 12 - stream_cksum.run (Failed) 14 - test_cdf_read.run (Failed) Errors while running CTest
2 2 cdi.c printinfo.c 3 3 ) 4 4 5 target_include_directories(cdi PUBLIC 5 target_include_directories(cdi PRIVATE 6 6 $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/src> 7 7 $<INSTALL_INTERFACE:include 8 8 ) 9 target_link_libraries(cdi PUBLIC cdilib netCDF::netcdf pthread) 9 10 target_link_libraries(cdi PRIVATE cdilib netCDF::netcdf pthread) 11 target_include_directories(cdi PRIVATE "${PROJECT_BINARY_DIR}/src/config.h") 31 message(VERBOSE "added compile definition HAVE_NETCDF4=${netCDF_FOUND}") 32 add_compile_definitions(HAVE_LIBNETCDF=${netCDF_FOUND}) 33 add_compile_definitions(HAVE_NETCDF4=${netCDF_FOUND}) 34 else() 35 message(WARNING "netcdf not found, compiling without netcdf") 36 endif () 62 option(enable_netcdf "Use the netcdf library [default=ON]" ON) 63 if(${enable_netcdf} OR netCDF_ROOT ) 64 find_package(netCDF COMPONENTS C REQUIRED) 65 if (TARGET netCDF::netcdf) 66 list(APPEND cdi_compile_defs 67 HAVE_LIBNETCDF=${netCDF_FOUND} 68 HAVE_LIBNC_DAP=${netCDF_FOUND} 69 HAVE_NETCDF4=${netCDF_FOUND} 70 HAVE_LIBGRIB_API=${netCDF_FOUND} 71 HAVE_LIBGRIB=${netCDF_FOUND} Yes, they are internal libraries from us. I need to sort that out later on.
Edited by Oliver Heidmann
34 else() 35 message(WARNING "netcdf not found, compiling without netcdf") 36 endif () 62 option(enable_netcdf "Use the netcdf library [default=ON]" ON) 63 if(${enable_netcdf} OR netCDF_ROOT ) 64 find_package(netCDF COMPONENTS C REQUIRED) 65 if (TARGET netCDF::netcdf) 66 list(APPEND cdi_compile_defs 67 HAVE_LIBNETCDF=${netCDF_FOUND} 68 HAVE_LIBNC_DAP=${netCDF_FOUND} 69 HAVE_NETCDF4=${netCDF_FOUND} 70 HAVE_LIBGRIB_API=${netCDF_FOUND} 71 HAVE_LIBGRIB=${netCDF_FOUND} 72 ) 73 else() 74 message(WARNING "netcdf target not found, compiling without netcdf") find_package(netCDF COMPONENTS C REQUIRED)
will either find netCDF::netcdf or fail with an error right away because of theREQUIRED
keyword, which meansif (TARGET netCDF::netcdf)
is always true, at least according toFindNetCDF.cmake
documentation and logic. I just quickly read it to make sure.By the way it is considered a good practice to use
REQUIRED
, so I'm not advocating to remove it, however I do think theelse()
and warning below cannot be reached and can be removed.