diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llcommon/CMakeLists.txt | 26 | 
1 files changed, 14 insertions, 12 deletions
| diff --git a/indra/llcommon/CMakeLists.txt b/indra/llcommon/CMakeLists.txt index a74309385f..d767503c7e 100644 --- a/indra/llcommon/CMakeLists.txt +++ b/indra/llcommon/CMakeLists.txt @@ -305,18 +305,20 @@ endif ()  if (USE_AUTOBUILD_3P OR USE_CONAN)  add_dependencies(llcommon stage_third_party_libs)  else () -	target_compile_options(${PROJECT_NAME} PUBLIC -Wno-deprecated-declarations) -	if (CMAKE_CXX_COMPILER_ID MATCHES "GNU") -		set_source_files_properties( -			llapp.cpp -			llsdutil.cpp -			PROPERTIES COMPILE_FLAGS -Wno-stringop-truncation) -		set_source_files_properties(llevent.cpp PROPERTIES -			COMPILE_FLAGS -Wno-nonnull) -	elseif (LINUX AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") -		set_source_files_properties(llsys.cpp PROPERTIES -			COMPILE_FLAGS -Wno-unused-but-set-variable) -	endif() +    target_compile_options(${PROJECT_NAME} PUBLIC -Wno-deprecated-declarations) +    if (CMAKE_CXX_COMPILER_ID MATCHES "GNU") +        set_source_files_properties( +            llapp.cpp +            llsdutil.cpp +            PROPERTIES COMPILE_FLAGS -Wno-stringop-truncation) +        set_source_files_properties( +            llevent.cpp +            llfasttimer.cpp +            PROPERTIES COMPILE_FLAGS -Wno-nonnull) +    elseif (LINUX AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") +        set_source_files_properties(llsys.cpp PROPERTIES +            COMPILE_FLAGS -Wno-unused-but-set-variable) +    endif()  endif ()  include(LibraryInstall) | 
