From 3a1c7a402b2617ad8fc0cf0d85e598e52dd22722 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 31 Jul 2016 10:39:21 +0100 Subject: [PATCH] Disable CEF sandbox May fix #575, as I experienced the same issue after updating CEF, and this fixed it. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index bdbb20d5..1bed62c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -129,6 +129,7 @@ ExternalProject_Add(cef PREFIX "external" URL ${CEF_URL} URL_HASH SHA1=${CEF_URL_HASH} + CMAKE_ARGS -DUSE_SANDBOX=OFF BUILD_COMMAND ${CMAKE_COMMAND} --build . --target libcef_dll_wrapper --config $(CONFIGURATION) INSTALL_COMMAND "") ExternalProject_Get_Property(cef SOURCE_DIR BINARY_DIR)