From 87bd0c00bcf39a4ff9f919d4ebb17010919b2bc0 Mon Sep 17 00:00:00 2001 From: Be Wilson Date: Fri, 1 Dec 2023 14:03:52 -0600 Subject: [PATCH] meta_project: do not parallelize build --- examples/meta_project/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/meta_project/CMakeLists.txt b/examples/meta_project/CMakeLists.txt index 00b09b06f..c8269dba7 100644 --- a/examples/meta_project/CMakeLists.txt +++ b/examples/meta_project/CMakeLists.txt @@ -34,7 +34,7 @@ if(NOT Corrosion_FOUND) endif() set(CRATE qml-meta-project) -corrosion_import_crate(MANIFEST_PATH rust/main/Cargo.toml CRATES ${CRATE}) +corrosion_import_crate(MANIFEST_PATH rust/main/Cargo.toml CRATES ${CRATE} FLAGS -j1) set(CXXQT_EXPORT_DIR "${CMAKE_CURRENT_BINARY_DIR}/cxxqt") corrosion_set_env_vars(${CRATE} "CXXQT_EXPORT_DIR=${CXXQT_EXPORT_DIR}"