diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2021-11-10 11:11:04 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2021-11-10 11:11:04 -0500 |
commit | 69a39dce0b6e96e03414928a3db8189cc5aece7e (patch) | |
tree | 448d83367b74ffecfa3700fbbbd6bb92db2373dc /indra | |
parent | 1a39a8f7d953a28b03bad0921a8877e21e1e2c61 (diff) |
SL-16094: Only link IMM32.LIB for llurlentry tests on Windows.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/llui/CMakeLists.txt b/indra/llui/CMakeLists.txt index 25ceb68b19..55c1655d7b 100644 --- a/indra/llui/CMakeLists.txt +++ b/indra/llui/CMakeLists.txt @@ -308,6 +308,10 @@ if(LL_TESTS) ${BOOST_FIBER_LIBRARY} ${BOOST_CONTEXT_LIBRARY} ${BOOST_SYSTEM_LIBRARY} ${WINDOWS_LIBRARIES}) if(NOT LINUX) - LL_ADD_INTEGRATION_TEST(llurlentry llurlentry.cpp "imm32;${test_libs}") + if(WINDOWS) + LL_ADD_INTEGRATION_TEST(llurlentry llurlentry.cpp "imm32;${test_libs}") + else(WINDOWS) + LL_ADD_INTEGRATION_TEST(llurlentry llurlentry.cpp "${test_libs}") + endif(WINDOWS) endif(NOT LINUX) endif(LL_TESTS) |