Moved project APIs back into base folder with rest of the core code

This commit is contained in:
Jason Perkins 2013-09-17 14:22:54 -04:00
parent b98af00c11
commit cf8b1b0f3a
4 changed files with 9 additions and 9 deletions

View File

@ -30,16 +30,16 @@
"base/api.lua",
"base/detoken.lua",
-- runtime environment setup
"_premake_init.lua",
-- project APIs
"project/project.lua",
"project/config.lua",
"project/fileconfig.lua",
"base/project.lua",
"base/config.lua",
"base/fileconfig.lua",
"base/solution.lua",
"base/premake.lua",
-- runtime environment setup
"_premake_init.lua",
-- tool APIs
"tools/dotnet.lua",
"tools/gcc.lua",

View File

@ -1,5 +1,5 @@
--
-- src/project/config.lua
-- config.lua
-- Premake configuration object API
-- Copyright (c) 2011-2013 Jason Perkins and the Premake project
--

View File

@ -1,5 +1,5 @@
--
-- src/project/fileconfig.lua
-- fileconfig.lua
-- The set of configuration information for a specific file.
-- Copyright (c) 2011-2013 Jason Perkins and the Premake project
--

View File

@ -1,5 +1,5 @@
--
-- src/project/project.lua
-- project.lua
-- Premake project object API
-- Copyright (c) 2011-2013 Jason Perkins and the Premake project
--