diff options
Diffstat (limited to 'indra/llmessage')
| -rw-r--r-- | indra/llmessage/CMakeLists.txt | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt index e44309476b..258d32a045 100644 --- a/indra/llmessage/CMakeLists.txt +++ b/indra/llmessage/CMakeLists.txt @@ -3,13 +3,19 @@  project(llmessage)  include(00-Common) +if (LL_TESTS)  include(GoogleMock)  include(LLAddBuildTest) +endif ()  include(LLCommon)  include(LLCoreHttp) +if (LL_TESTS)  include(LLAddBuildTest) +endif ()  include(Python) +if (LL_TESTS)  include(Tut) +endif ()  include(Python)  include(JsonCpp) @@ -132,6 +138,7 @@ set(llmessage_HEADER_FILES      llmessagebuilder.h      llmessageconfig.h      llmessagereader.h +    llmessagesenderinterface.h      llmessagetemplate.h      llmessagetemplateparser.h      llmessagethrottle.h @@ -199,6 +206,15 @@ target_link_libraries(  )  target_include_directories( llmessage  INTERFACE   ${CMAKE_CURRENT_SOURCE_DIR}) +if (NOT (USE_AUTOBUILD_3P OR USE_CONAN)) +	if (CMAKE_CXX_COMPILER_ID MATCHES "GNU") +		set_source_files_properties(llnamevalue.cpp PROPERTIES +			COMPILE_FLAGS -Wno-stringop-truncation) +	endif() +endif () + +include(LibraryInstall) +  # tests  if (LL_TESTS)    SET(llmessage_TEST_SOURCE_FILES | 
