Newer
Older
callum_linden
committed
# -*- cmake -*-
include(Linking)
include(Prebuilt)
if (USESYSTEMLIBS)
set(CEFPLUGIN OFF CACHE BOOL
"CEFPLUGIN support for the llplugin/llmedia test apps.")
else (USESYSTEMLIBS)
callum_linden
committed
use_prebuilt_binary(cef)
callum_linden
committed
set(CEFPLUGIN ON CACHE BOOL
"CEFPLUGIN support for the llplugin/llmedia test apps.")
set(CEF_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include/cef)
callum_linden
committed
endif (USESYSTEMLIBS)
if (WINDOWS)
callum_linden
committed
set(CEF_PLUGIN_LIBRARIES
libcef.lib
libcef_dll_wrapper.lib
llceflib.lib
)
callum_linden
committed
elseif (DARWIN)
set(CEF_PLUGIN_LIBRARIES
${ARCH_PREBUILT_DIRS_RELEASE}/libcef_dll_wrapper.a
${ARCH_PREBUILT_DIRS_RELEASE}/libLLCefLib.a
#${ARCH_PREBUILT_DIRS_RELEASE}/libQtWebKit.4.dylib
)
callum_linden
committed
elseif (LINUX)
endif (WINDOWS)