Add warning checks

This commit is contained in:
Roman Chistokhodov 2019-08-27 17:00:53 +03:00
parent 745d722a5a
commit 413e2c941e
1 changed files with 5 additions and 0 deletions

View File

@ -86,6 +86,11 @@ if(${CMAKE_VERSION} VERSION_LESS "3.0.2")
endmacro()
endif()
if(NOT MSVC)
add_compile_options(-Wempty-body) # GCC/Clang flag
add_compile_options(-Wreturn-type) # GCC/Clang flag
endif()
if(BUILD_CLIENT)
add_subdirectory(cl_dll)
endif()