Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
a0de7a5c
Commit
a0de7a5c
authored
12 years ago
by
Graham Madarasz (Graham Linden)
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/integration_tests/llui_libtest/CMakeLists.txt
+2
-1
2 additions, 1 deletion
indra/integration_tests/llui_libtest/CMakeLists.txt
with
2 additions
and
1 deletion
indra/integration_tests/llui_libtest/CMakeLists.txt
+
2
−
1
View file @
a0de7a5c
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment