feat: small changes to basalt build

This commit is contained in:
Gabriele Musco 2024-05-12 09:46:17 +02:00
parent 2a2365e61a
commit ce99220c3f
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -39,7 +39,9 @@ pub fn get_build_basalt_jobs(profile: &Profile, clean_build: bool) -> VecDeque<W
);
let mut cmake_env: HashMap<String, String> = HashMap::new();
cmake_env.insert("CMAKE_BUILD_PARALLEL_LEVEL".into(), "2".into());
cmake_env.insert("CMAKE_BUILD_PARALLEL_LEVEL".into(), "15".into());
cmake_env.insert("CMAKE_BUILD_TYPE".into(), "RelWithDebInfo".into());
cmake_env.insert("BUILD_TESTS".into(), "off".into());
let cmake = Cmake {
env: Some(cmake_env),