Added missing IOKit lib dep to llui_libtest integration test cmake

master
Graham Madarasz (Graham Linden) 2013-02-27 08:04:20 -08:00
parent f5516e0fc0
commit a0de7a5ca7
1 changed files with 2 additions and 1 deletions

View File

@ -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)