diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-09-17 21:27:43 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-09-17 22:37:43 +0300 |
commit | 3c6e2a6e4c061add79b7a8eae96a6271148d278b (patch) | |
tree | c6f341a393038dfbac438ec3114bac75dd71b636 /indra | |
parent | 7471788271174a673db10426b11db418928e1dd7 (diff) |
SL-17238 Supress errors from physicsextensions
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 6bddea25a1..966630d1fc 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -66,6 +66,9 @@ if (NOT HAVOK_TPV) endif() if( TARGET llphysicsextensions ) target_link_libraries(llphysicsextensions llrender ) + if (DARWIN) + target_compile_options( llphysicsextensions PRIVATE -Wno-unused-local-typedef) + endif (DARWIN) endif() endif (NOT HAVOK_TPV) |