|
Last change
on this file was 24387, checked in by s0600204, 4 years ago |
|
(1/2) Update premake5 to Alpha 15 - premake5 files
See CHANGES.txt below for the upstream-composed list of changes.
premake5.exe built by Stan
Accepted By: Stan (for Windows)
Trac Tickets: #5869
Differential Revision: https://code.wildfiregames.com/D3219
|
|
File size:
1.4 KB
|
| Line | |
|---|
| 1 | --
|
|---|
| 2 | -- _manifest.lua
|
|---|
| 3 | -- Manage the list of built-in Premake scripts.
|
|---|
| 4 | -- Copyright (c) 2002-2015 Jason Perkins and the Premake project
|
|---|
| 5 | --
|
|---|
| 6 |
|
|---|
| 7 | -- The master list of built-in scripts. Order is important! If you want to
|
|---|
| 8 | -- build a new script into Premake, add it to this list.
|
|---|
| 9 |
|
|---|
| 10 | return
|
|---|
| 11 | {
|
|---|
| 12 | -- core files
|
|---|
| 13 | "base/_foundation.lua",
|
|---|
| 14 | "base/string.lua",
|
|---|
| 15 | "base/table.lua",
|
|---|
| 16 | "base/path.lua",
|
|---|
| 17 | "base/os.lua",
|
|---|
| 18 | "base/io.lua",
|
|---|
| 19 | "base/tools.lua",
|
|---|
| 20 | "base/tree.lua",
|
|---|
| 21 | "base/globals.lua",
|
|---|
| 22 | "base/moduledownloader.lua",
|
|---|
| 23 | "base/semver.lua",
|
|---|
| 24 | "base/http.lua",
|
|---|
| 25 | "base/json.lua",
|
|---|
| 26 | "base/jsonwrapper.lua",
|
|---|
| 27 | "base/languages.lua",
|
|---|
| 28 | "base/term.lua",
|
|---|
| 29 |
|
|---|
| 30 | -- configuration data
|
|---|
| 31 | "base/field.lua",
|
|---|
| 32 | "base/criteria.lua",
|
|---|
| 33 | "base/detoken.lua",
|
|---|
| 34 | "base/configset.lua",
|
|---|
| 35 | "base/context.lua",
|
|---|
| 36 | "base/container.lua",
|
|---|
| 37 |
|
|---|
| 38 | -- runtime switches
|
|---|
| 39 | "base/option.lua",
|
|---|
| 40 | "base/action.lua",
|
|---|
| 41 |
|
|---|
| 42 | -- project script setup
|
|---|
| 43 | "base/api.lua",
|
|---|
| 44 |
|
|---|
| 45 | -- project objects
|
|---|
| 46 | "base/global.lua",
|
|---|
| 47 | "base/workspace.lua",
|
|---|
| 48 | "base/group.lua",
|
|---|
| 49 | "base/project.lua",
|
|---|
| 50 | "base/config.lua",
|
|---|
| 51 | "base/fileconfig.lua",
|
|---|
| 52 | "base/rule.lua",
|
|---|
| 53 |
|
|---|
| 54 | -- project script processing
|
|---|
| 55 | "base/oven.lua",
|
|---|
| 56 | "base/validation.lua",
|
|---|
| 57 | "base/premake.lua",
|
|---|
| 58 | "base/help.lua",
|
|---|
| 59 |
|
|---|
| 60 | -- tool APIs
|
|---|
| 61 | "tools/dotnet.lua",
|
|---|
| 62 | "tools/gcc.lua",
|
|---|
| 63 | "tools/msc.lua",
|
|---|
| 64 | "tools/snc.lua",
|
|---|
| 65 | "tools/clang.lua",
|
|---|
| 66 | "tools/mingw.lua",
|
|---|
| 67 |
|
|---|
| 68 | -- Clean action
|
|---|
| 69 | "actions/clean/_clean.lua",
|
|---|
| 70 |
|
|---|
| 71 | "_premake_init.lua",
|
|---|
| 72 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.