From 5da59ed0a5da2b1f992c8548ca0325714c1ea4b3 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 17 Oct 2024 00:41:04 +0800 Subject: fix ninja for cmake --- xmake/modules/package/tools/cmake.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xmake/modules/package/tools/cmake.lua b/xmake/modules/package/tools/cmake.lua index 2528ec25b..7c3c52fd2 100644 --- a/xmake/modules/package/tools/cmake.lua +++ b/xmake/modules/package/tools/cmake.lua @@ -1158,7 +1158,11 @@ function _get_cmake_generator(package, opt) opt = opt or {} local cmake_generator = opt.cmake_generator if not cmake_generator then - if project.policy("package.cmake_generator.ninja") or package:policy("package.cmake_generator.ninja") then + local use_ninja = package:policy("package.cmake_generator.ninja") + if use_ninja == nil then + use_ninja = project.policy("package.cmake_generator.ninja") + end + if use_ninja then cmake_generator = "Ninja" end if not cmake_generator then -- cgit v1.3.1