Added new global _WORKING_DIR

This commit is contained in:
Unknown 2011-11-13 17:19:10 -05:00
parent 2a8b81ac8d
commit 90a71d8401
2 changed files with 3 additions and 1 deletions

View File

@ -40,6 +40,7 @@
* Patch 3381066: Fix VS2010 project references * Patch 3381066: Fix VS2010 project references
* Added debug environment variable support for Visual Studio * Added debug environment variable support for Visual Studio
* Added debug environment variable support for Codeblocks using gdb * Added debug environment variable support for Codeblocks using gdb
* Added new global _WORKING_DIR
------- -------

View File

@ -1,7 +1,7 @@
-- --
-- _premake_main.lua -- _premake_main.lua
-- Script-side entry point for the main program logic. -- Script-side entry point for the main program logic.
-- Copyright (c) 2002-2009 Jason Perkins and the Premake project -- Copyright (c) 2002-2011 Jason Perkins and the Premake project
-- --
@ -9,6 +9,7 @@
local shorthelp = "Type 'premake4 --help' for help" local shorthelp = "Type 'premake4 --help' for help"
local versionhelp = "premake4 (Premake Build Script Generator) %s" local versionhelp = "premake4 (Premake Build Script Generator) %s"
_WORKING_DIR = os.getcwd()
-- --