diff options
author | Geenz <geenz@geenzo.com> | 2013-03-11 10:26:52 -0400 |
---|---|---|
committer | Geenz <geenz@geenzo.com> | 2013-03-11 10:26:52 -0400 |
commit | 3c60fb24ca3685614880645af61d44287c369aea (patch) | |
tree | b4cdf8d72a107de57325577942cafdbb5699e66a /indra/integration_tests | |
parent | 5caa7a465e73fc9cf70f5f2c5d147a509bd5e185 (diff) | |
parent | d046e606575b2c3714a88e321c88e05441cba4a8 (diff) |
Merge
Diffstat (limited to 'indra/integration_tests')
-rw-r--r-- | indra/integration_tests/llui_libtest/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/integration_tests/llui_libtest/CMakeLists.txt b/indra/integration_tests/llui_libtest/CMakeLists.txt index 91c9f20c10..06389ff871 100644 --- a/indra/integration_tests/llui_libtest/CMakeLists.txt +++ b/indra/integration_tests/llui_libtest/CMakeLists.txt @@ -56,7 +56,8 @@ add_executable(llui_libtest ${llui_libtest_SOURCE_FILES}) # Link with OS-specific libraries for LLWindow dependency if (DARWIN) find_library(COCOA_LIBRARY Cocoa) - set(OS_LIBRARIES ${COCOA_LIBRARY}) + find_library(IOKIT_LIBRARY IOKit) + set(OS_LIBRARIES ${COCOA_LIBRARY} ${IOKIT_LIBRARY}) elseif (WINDOWS) #ll_stack_trace needs this now... list(APPEND WINDOWS_LIBRARIES dbghelp) |