diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2016-11-15 16:02:39 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2016-11-15 16:02:39 -0500 | 
| commit | 0c8556921d05a356afd4014b966ee8c0e1002e36 (patch) | |
| tree | b95e486d02433f824eab8111693841e7b6fc8e72 | |
| parent | 6c7a97286113b1d3335d585d0d7cbc047baae021 (diff) | |
DRTVWR-418: Mistakenly inverted the sense of the LL_64BIT_BUILD test.
| -rw-r--r-- | indra/cmake/00-Common.cmake | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake index e270a43006..8fc05659f6 100644 --- a/indra/cmake/00-Common.cmake +++ b/indra/cmake/00-Common.cmake @@ -79,7 +79,7 @@ if (WINDOWS)        )    # Nicky: x64 implies SSE2 -  if( ADDRESS_SIZE EQUAL 64 ) +  if( ADDRESS_SIZE EQUAL 32 )      add_definitions( /arch:SSE2 )    endif() | 
