summaryrefslogtreecommitdiff
path: root/indra/cmake/CEFPlugin.cmake
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2024-08-12 15:22:41 +0800
committerErik Kundiman <erik@megapahit.org>2024-08-12 15:22:41 +0800
commit199d71b2baa76f1719cd074b60051db40886f7c0 (patch)
tree711c4aade4cc693ef8d95ef59167330f8818ec0c /indra/cmake/CEFPlugin.cmake
parent5c34a90bea4506ac965817596378a97ae5895a64 (diff)
Download & install aren't redone when installed
by making sure we *write* the _installed files (containing the value 0).
Diffstat (limited to 'indra/cmake/CEFPlugin.cmake')
-rw-r--r--indra/cmake/CEFPlugin.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/cmake/CEFPlugin.cmake b/indra/cmake/CEFPlugin.cmake
index 921a6e8032..3cf753e69d 100644
--- a/indra/cmake/CEFPlugin.cmake
+++ b/indra/cmake/CEFPlugin.cmake
@@ -18,6 +18,7 @@ if (CMAKE_OSX_ARCHITECTURES MATCHES arm64)
WORKING_DIRECTORY ${AUTOBUILD_INSTALL_DIR}
RESULT_VARIABLE dullahan_installed
)
+ file(WRITE ${PREBUILD_TRACKING_DIR}/dullahan_installed "${dullahan_installed}")
endif (${PREBUILD_TRACKING_DIR}/sentinel_installed IS_NEWER_THAN ${PREBUILD_TRACKING_DIR}/dullahan_installed OR NOT ${dullahan_installed} EQUAL 0)
elseif (CMAKE_OSX_ARCHITECTURES MATCHES x86_64)
if (${PREBUILD_TRACKING_DIR}/sentinel_installed IS_NEWER_THAN ${PREBUILD_TRACKING_DIR}/dullahan_installed OR NOT ${dullahan_installed} EQUAL 0)
@@ -32,6 +33,7 @@ elseif (CMAKE_OSX_ARCHITECTURES MATCHES x86_64)
WORKING_DIRECTORY ${AUTOBUILD_INSTALL_DIR}
RESULT_VARIABLE dullahan_installed
)
+ file(WRITE ${PREBUILD_TRACKING_DIR}/dullahan_installed "${dullahan_installed}")
endif (${PREBUILD_TRACKING_DIR}/sentinel_installed IS_NEWER_THAN ${PREBUILD_TRACKING_DIR}/dullahan_installed OR NOT ${dullahan_installed} EQUAL 0)
else (CMAKE_OSX_ARCHITECTURES MATCHES arm64)
use_prebuilt_binary(dullahan)