Skip to content
Snippets Groups Projects
Commit a0de7a5c authored by Graham Madarasz (Graham Linden)'s avatar Graham Madarasz (Graham Linden)
Browse files

Added missing IOKit lib dep to llui_libtest integration test cmake

parent f5516e0f
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,8 @@ add_executable(llui_libtest ${llui_libtest_SOURCE_FILES}) ...@@ -56,7 +56,8 @@ add_executable(llui_libtest ${llui_libtest_SOURCE_FILES})
# Link with OS-specific libraries for LLWindow dependency # Link with OS-specific libraries for LLWindow dependency
if (DARWIN) if (DARWIN)
find_library(COCOA_LIBRARY Cocoa) find_library(COCOA_LIBRARY Cocoa)
set(OS_LIBRARIES ${COCOA_LIBRARY}) find_library(IOKIT_LIBRARY IOKit)
set(OS_LIBRARIES ${COCOA_LIBRARY} ${IOKIT_LIBRARY})
elseif (WINDOWS) elseif (WINDOWS)
#ll_stack_trace needs this now... #ll_stack_trace needs this now...
list(APPEND WINDOWS_LIBRARIES dbghelp) list(APPEND WINDOWS_LIBRARIES dbghelp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment