From 857a31aec6e18541939a82ad70e243b9eb04636b Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Sat, 11 Dec 2021 18:28:32 +0400 Subject: [PATCH] Remove unneeded GLOBAL from external_jemalloc_bundled --- external/jemalloc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/jemalloc/CMakeLists.txt b/external/jemalloc/CMakeLists.txt index 014dc4f..9952083 100644 --- a/external/jemalloc/CMakeLists.txt +++ b/external/jemalloc/CMakeLists.txt @@ -27,7 +27,7 @@ if (DESKTOP_APP_USE_PACKAGED) endif() if (NOT JEMALLOC_FOUND) - add_library(external_jemalloc_bundled STATIC IMPORTED GLOBAL) + add_library(external_jemalloc_bundled STATIC IMPORTED) set(jemalloc_loc ${third_party_loc}/jemalloc) include(ExternalProject)