From a9896fa01b72f260940c3b5df4eec0c1b73dce26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Tue, 28 Mar 2017 20:57:22 +0200 Subject: [build] generate .xcconfig files with configure_file We previously used incremental `file(WRITE ...)` commands that gradually recreated the file on every CMake invocation. This sometimes lead to Xcode parsing a partially written file, which in turn breaks building dependend targets. Instead, we're now using a templated configuration file, which ensure that the file is created in one go and hopefully reduces the race condition between CMake and Xcode's automatic project updating. --- cmake/core.cmake | 1 - 1 file changed, 1 deletion(-) (limited to 'cmake/core.cmake') diff --git a/cmake/core.cmake b/cmake/core.cmake index 78800a4838..616e43028c 100644 --- a/cmake/core.cmake +++ b/cmake/core.cmake @@ -29,4 +29,3 @@ target_add_mason_package(mbgl-core PRIVATE wagyu) mbgl_platform_core() create_source_groups(mbgl-core) -target_append_xcconfig(mbgl-core) -- cgit v1.2.1