Skip to content

Commit

Permalink
add a quiet all build option to set all quiet options
Browse files Browse the repository at this point in the history
  • Loading branch information
hellkite500 authored and mattw-nws committed Dec 13, 2021
1 parent 2f42a51 commit c952ebe
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -335,28 +335,16 @@ if(PACKAGE_TESTS)
add_subdirectory(test)
endif()

<<<<<<< HEAD
if(UDUNITS_QUITE)
add_compile_definitions(UDUNITS_QUITE)
=======
if(QUITE)
set(UDUNITS_QUITE true)
set(ET_QUITE true)
set(NGEN_QUITE true)
if(QUIET)
set(UDUNITS_QUIET true)
set(ET_QUIET true)
set(NGEN_QUIET true)
endif()

if(UDUNITS_QUIET)
add_compile_definitions(UDUNITS_QUIET)
>>>>>>> 7888582... sq udunits
endif()

if(ET_QUIET)
add_compile_definitions(ET_QUIET)
endif()

if(NGEN_QUIET)
add_compile_definitions(NGEN_QUIET)
endif()
#add_library(Hymod ${HYMOD_INCLUDE_DIR}/Hymod.h)
#set_target_properties(Hymod PROPERTIES LINKER_LANGUAGE CXX)

Expand Down

0 comments on commit c952ebe

Please sign in to comment.