Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_manifest.lua « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7aa56831ea0e38f5a91b2cc813c3410b58daea11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--
-- _manifest.lua
-- Manage the list of built-in Premake scripts.
-- Copyright (c) 2002-2008 Jason Perkins and the Premake project
--


-- The master list of built-in scripts. Order is important! If you want to
-- build a new script into Premake, add it to this list.

	local scripts =
	{
		"base/path.lua",
		"base/string.lua",
		"base/table.lua",
		"base/os.lua",
		"base/globals.lua",
		"base/premake.lua",
		"base/template.lua",
		"base/project.lua",
		"base/functions.lua",
		"base/gcc.lua",
		
		-- this one must be last
		"_premake_main.lua"
	}


-- The list of templates

	local templates = 
	{
		"actions/make/make_solution.tmpl",
		"actions/make/make_cpp_project.tmpl",
		"actions/vstudio/vs2002_solution.tmpl",
	}
	
	
-- The list of built in actions

	local actions = 
	{
		"actions/clean/_clean.lua",
		"actions/make/_make.lua",
		"actions/vstudio/_vstudio.lua",
	}
	
	
	
	return scripts, templates, actions