Skip to content
Snippets Groups Projects
Commit 29512788 authored by Aimee Linden's avatar Aimee Linden
Browse files

VWR-20815 (SNOW-511) Allow standalone builds to correctly find a system version of llqtwebkit

parent 6f1d8b1d
No related branches found
No related tags found
No related merge requests found
...@@ -524,6 +524,7 @@ Robin Cornelius ...@@ -524,6 +524,7 @@ Robin Cornelius
SNOW-504 SNOW-504
SNOW-506 SNOW-506
SNOW-507 SNOW-507
SNOW-511
SNOW-514 SNOW-514
SNOW-520 SNOW-520
SNOW-585 SNOW-585
......
...@@ -3,48 +3,46 @@ include(Linking) ...@@ -3,48 +3,46 @@ include(Linking)
include(Prebuilt) include(Prebuilt)
if (STANDALONE) if (STANDALONE)
set(WEBKITLIBPLUGIN OFF CACHE BOOL set(WEBKITLIBPLUGIN OFF CACHE BOOL
"WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.") "WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.")
else (STANDALONE) else (STANDALONE)
use_prebuilt_binary(llqtwebkit) use_prebuilt_binary(llqtwebkit)
set(WEBKITLIBPLUGIN ON CACHE BOOL set(WEBKITLIBPLUGIN ON CACHE BOOL
"WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.") "WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.")
endif (STANDALONE) endif (STANDALONE)
if (WINDOWS) if (WINDOWS)
set(WEBKIT_PLUGIN_LIBRARIES set(WEBKIT_PLUGIN_LIBRARIES
debug llqtwebkitd debug llqtwebkitd
debug QtWebKitd4 debug QtWebKitd4
debug QtOpenGLd4 debug QtOpenGLd4
debug QtNetworkd4 debug QtNetworkd4
debug QtGuid4 debug QtGuid4
debug QtCored4 debug QtCored4
debug qtmaind debug qtmaind
optimized llqtwebkit optimized llqtwebkit
optimized QtWebKit4 optimized QtWebKit4
optimized QtOpenGL4 optimized QtOpenGL4
optimized QtNetwork4 optimized QtNetwork4
optimized QtGui4 optimized QtGui4
optimized QtCore4 optimized QtCore4
optimized qtmain optimized qtmain
) )
elseif (DARWIN) elseif (DARWIN)
set(WEBKIT_PLUGIN_LIBRARIES set(WEBKIT_PLUGIN_LIBRARIES
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib
debug ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib debug ${ARCH_PREBUILT_DIRS_RELEASE}/libllqtwebkit.dylib
) )
elseif (LINUX) elseif (LINUX)
if (STANDALONE)
set(WEBKIT_PLUGIN_LIBRARIES llqtwebkit)
else (STANDALONE)
set(WEBKIT_PLUGIN_LIBRARIES set(WEBKIT_PLUGIN_LIBRARIES
llqtwebkit llqtwebkit
qgif qgif
# qico
qjpeg qjpeg
# qpng
# qtiff
# qsvg
# QtSvg
QtWebKit QtWebKit
QtOpenGL QtOpenGL
QtNetwork QtNetwork
...@@ -56,9 +54,6 @@ elseif (LINUX) ...@@ -56,9 +54,6 @@ elseif (LINUX)
X11 X11
Xrender Xrender
GL GL
# sqlite3
# Xi
# SM
) )
endif (STANDALONE)
endif (WINDOWS) endif (WINDOWS)
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