diff options
| -rw-r--r-- | indra/llcommon/CMakeLists.txt | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcommon/CMakeLists.txt b/indra/llcommon/CMakeLists.txt index 85ab874980..8e56e6a800 100644 --- a/indra/llcommon/CMakeLists.txt +++ b/indra/llcommon/CMakeLists.txt @@ -300,7 +300,9 @@ if (CMAKE_OSX_ARCHITECTURES MATCHES arm64)      file(WRITE ${PREBUILD_TRACKING_DIR}/sse2neon_installed "0")    endif (${PREBUILD_TRACKING_DIR}/sentinel_installed IS_NEWER_THAN ${PREBUILD_TRACKING_DIR}/sse2neon_installed OR NOT ${sse2neon_installed} EQUAL 0)    target_include_directories(llcommon PUBLIC ${LIBS_PREBUILT_DIR}/include/sse2neon) -endif () +elseif (LINUX) +  target_include_directories(llcommon PUBLIC ${LIBS_PREBUILT_DIR}/include) +endif (CMAKE_OSX_ARCHITECTURES MATCHES arm64)  if (USE_AUTOBUILD_3P OR USE_CONAN)  add_dependencies(llcommon stage_third_party_libs)  | 
