diff options
author | Oz Linden <oz@lindenlab.com> | 2010-10-12 10:59:43 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-10-12 10:59:43 -0400 |
commit | 8269d4d51cd58fa5c8fc4ac22d9f42041849889d (patch) | |
tree | be56c82c01f3b4e10ad2a38a2d2f8f9939f62a3b /indra/llplugin | |
parent | 8b55caf9767777c2bfd578cba22f220b2c2c21be (diff) | |
parent | 28d8612cf767d42a15c6cc8ee030bdcfab496987 (diff) |
pull fixes for STORM-368 (enable LL_TESTS on all tests)
Diffstat (limited to 'indra/llplugin')
-rw-r--r-- | indra/llplugin/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llplugin/CMakeLists.txt b/indra/llplugin/CMakeLists.txt index fdd510b389..d3a73058c4 100644 --- a/indra/llplugin/CMakeLists.txt +++ b/indra/llplugin/CMakeLists.txt @@ -51,6 +51,14 @@ set(llplugin_HEADER_FILES set_source_files_properties(${llplugin_HEADER_FILES} PROPERTIES HEADER_FILE_ONLY TRUE) +if(NOT WORD_SIZE EQUAL 32) + if(WINDOWS) + add_definitions(/FIXED:NO) + else(WINDOWS) # not windows therefore gcc LINUX and DARWIN + add_definitions(-fPIC) + endif(WINDOWS) +endif(NOT WORD_SIZE EQUAL 32) + list(APPEND llplugin_SOURCE_FILES ${llplugin_HEADER_FILES}) add_library (llplugin ${llplugin_SOURCE_FILES}) |