diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2018-12-08 11:26:37 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2018-12-08 11:26:37 -0500 |
commit | a4eb5056a717feaf940f125756c7521b9103d41a (patch) | |
tree | 66566d6e10703b51fbee40b1396ee34d6c1d6852 | |
parent | a36cd3a2925bf77aa804a5617e0a227cabacde46 (diff) |
SL-10153: Need ole32 for new Windows call to CoTaskMemFree().
-rw-r--r-- | indra/llvfs/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llvfs/CMakeLists.txt b/indra/llvfs/CMakeLists.txt index 67dce8c073..8578f7a6bd 100644 --- a/indra/llvfs/CMakeLists.txt +++ b/indra/llvfs/CMakeLists.txt @@ -98,6 +98,9 @@ if (LL_TESTS) # INTEGRATION TESTS set(test_libs llmath llcommon llvfs ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES}) + if (WINDOWS) + list(APPEND test_libs ole32) + endif (WINDOWS) # TODO: Some of these need refactoring to be proper Unit tests rather than Integration tests. LL_ADD_INTEGRATION_TEST(lldir "" "${test_libs}") |