Skip to content

Commit 4fc4db0

Browse files
committed
add dotnet for linux and macos
1 parent 800d9e9 commit 4fc4db0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

xmake/platforms/bsd/xmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ platform("bsd")
3030

3131
set_installdir("/usr/local")
3232

33-
set_toolchains("envs", "gcc", "clang", "yasm", "nasm", "fasm", "cuda", "go", "rust", "gfortran", "zig")
33+
set_toolchains("envs", "gcc", "clang", "yasm", "nasm", "fasm", "cuda", "go", "rust", "gfortran", "zig", "dotnet")
3434

3535
set_menu {
3636
config =

xmake/platforms/linux/xmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ platform("linux")
3636
--
3737
-- TODO Perhaps we should handle it better, or remove the cross toolchain.
3838
set_toolchains("envs", "gcc", "clang",
39-
"cross", "yasm", "nasm", "fasm", "cuda", "go", "rust", "swift", "gfortran", "zig", "fpc", "nim")
39+
"cross", "yasm", "nasm", "fasm", "cuda", "go", "rust", "swift", "gfortran", "zig", "fpc", "nim", "dotnet")
4040

4141
set_menu {
4242
config =

xmake/platforms/macosx/xmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ platform("macosx")
2929
set_formats("symbol", "$(name).dSYM")
3030

3131
set_installdir("/usr/local")
32-
set_toolchains("envs", "xcode", "clang", "gcc", "yasm", "nasm", "cuda", "rust", "go", "gfortran", "zig", "fpc", "nim")
32+
set_toolchains("envs", "xcode", "clang", "gcc", "yasm", "nasm", "cuda", "rust", "go", "gfortran", "zig", "fpc", "nim", "dotnet")
3333

3434
set_menu {
3535
config =

0 commit comments

Comments
 (0)