Merge branch 'fix/basaltCmakeVer' into 'main'

fix: specify cmake policy version in basalt build

Closes #210

See merge request gabmus/envision!134
This commit is contained in:
GabMus 2025-06-14 21:08:45 +00:00
commit bec624442e

View file

@ -57,6 +57,7 @@ pub fn get_build_basalt_jobs(profile: &Profile, clean_build: bool) -> VecDeque<W
.to_string(),
),
("CMAKE_BUILD_TYPE", "RelWithDebInfo".into()),
("CMAKE_POLICY_VERSION_MINIMUM", "3.5".into()),
("BUILD_TESTS", "off".into()),
] {
cmake_env.insert(k.to_string(), v);