Skip to content

Commit

Permalink
Inherit settings in quickstart config setup
Browse files Browse the repository at this point in the history
  • Loading branch information
deplinenoise committed Nov 11, 2019
1 parent 6d9f0a5 commit 217060b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/tundra/gen_template.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,21 @@ Build {
SupportedHosts = { "windows" },
DefaultOnHost = "windows",
Tools = { "msvc" },
Inherit = win64,
},
Config {
Name = "macosx-clang",
SupportedHosts = { "macosx" },
DefaultOnHost = "macosx",
Tools = { "clang-osx" },
Inherit = macosx,
},
Config {
Name = "linux-gcc",
SupportedHosts = { "linux" },
DefaultOnHost = "linux",
Tools = { "gcc" },
Inherit = linux,
},
},
Expand Down

0 comments on commit 217060b

Please sign in to comment.