summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/main.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-07-02 10:09:52 +0800
committerGitHub <[email protected]>2025-07-02 10:09:52 +0800
commit0b43912e597d100a4de9c6c8fbbeb9401d7a6dbe (patch)
treee7364732140bfc9242f0fb465e024890b7d19596 /xmake/plugins/project/main.lua
parent5cf24e4202abda4b61c3d06720e7eb820dfe42ba (diff)
parentda18ca701757c653587831d13e57e772b96edad2 (diff)
Merge pull request #6411 from JX-Master/xcode-generator
New native Xcode project generator.
Diffstat (limited to 'xmake/plugins/project/main.lua')
-rw-r--r--xmake/plugins/project/main.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/plugins/project/main.lua b/xmake/plugins/project/main.lua
index e9ef607f1..2540889b5 100644
--- a/xmake/plugins/project/main.lua
+++ b/xmake/plugins/project/main.lua
@@ -33,6 +33,7 @@ import("clang.compile_flags")
import("clang.compile_commands")
import("private.utils.statistics")
import("private.service.remote_build.action", {alias = "remote_build_action"})
+import("xcode2.xcodeproj2")
function makers()
return {
@@ -42,6 +43,7 @@ function makers()
, cmake = cmakelists.make
, cmakelists = cmakelists.make
, xcode = xcodeproj.make
+ , xcode2 = xcodeproj2.make
, ninja = build_ninja.make
, vs2002 = vs.make(2002)
, vs2003 = vs.make(2003)