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
09e68a49
Commit
09e68a49
authored
8 years ago
by
callum_linden
Browse files
Options
Downloads
Patches
Plain Diff
Additional set of changes to use vlc-bin package
parent
50f311fa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indra/cmake/LibVLCPlugin.cmake
+6
-0
6 additions, 0 deletions
indra/cmake/LibVLCPlugin.cmake
indra/media_plugins/libvlc/CMakeLists.txt
+2
-1
2 additions, 1 deletion
indra/media_plugins/libvlc/CMakeLists.txt
indra/newview/viewer_manifest.py
+6
-0
6 additions, 0 deletions
indra/newview/viewer_manifest.py
with
14 additions
and
1 deletion
indra/cmake/LibVLCPlugin.cmake
+
6
−
0
View file @
09e68a49
...
...
@@ -6,11 +6,17 @@ if (USESYSTEMLIBS)
set
(
LIBVLCPLUGIN OFF CACHE BOOL
"LIBVLCPLUGIN support for the llplugin/llmedia test apps."
)
else
(
USESYSTEMLIBS
)
use_prebuilt_binary
(
vlc-bin
)
set
(
LIBVLCPLUGIN ON CACHE BOOL
"LIBVLCPLUGIN support for the llplugin/llmedia test apps."
)
set
(
VLC_INCLUDE_DIR
${
LIBS_PREBUILT_DIR
}
/include/vlc
)
endif
(
USESYSTEMLIBS
)
if
(
WINDOWS
)
set
(
VLC_PLUGIN_LIBRARIES
libvlc.lib
libvlccore.lib
)
elseif
(
DARWIN
)
elseif
(
LINUX
)
endif
(
WINDOWS
)
This diff is collapsed.
Click to expand it.
indra/media_plugins/libvlc/CMakeLists.txt
+
2
−
1
View file @
09e68a49
...
...
@@ -24,6 +24,7 @@ include_directories(
${
LLIMAGE_INCLUDE_DIRS
}
${
LLRENDER_INCLUDE_DIRS
}
${
LLWINDOW_INCLUDE_DIRS
}
${
VLC_INCLUDE_DIR
}
)
include_directories
(
SYSTEM
${
LLCOMMON_SYSTEM_INCLUDE_DIRS
}
...
...
@@ -53,7 +54,7 @@ target_link_libraries(media_plugin_libvlc
${
LLPLUGIN_LIBRARIES
}
${
MEDIA_PLUGIN_BASE_LIBRARIES
}
${
LLCOMMON_LIBRARIES
}
${
LIB
VLC_PLUGIN_LIBRARIES
}
${
VLC_PLUGIN_LIBRARIES
}
${
PLUGIN_API_WINDOWS_LIBRARIES
}
)
...
...
This diff is collapsed.
Click to expand it.
indra/newview/viewer_manifest.py
+
6
−
0
View file @
09e68a49
...
...
@@ -547,6 +547,12 @@ def construct(self):
self
.
path
(
"
zh-TW.pak
"
)
self
.
end_prefix
()
if
self
.
prefix
(
src
=
os
.
path
.
join
(
os
.
pardir
,
'
packages
'
,
'
bin
'
,
'
release
'
),
dst
=
"
llplugin
"
):
self
.
path
(
"
libvlc.dll
"
)
self
.
path
(
"
libvlccore.dll
"
)
self
.
path
(
"
plugins/
"
)
self
.
end_prefix
()
# pull in the crash logger and updater from other projects
# tag:"crash-logger" here as a cue to the exporter
self
.
path
(
src
=
'
../win_crash_logger/%s/windows-crash-logger.exe
'
%
self
.
args
[
'
configuration
'
],
...
...
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