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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <none@none>2010-01-07 19:24:17 +0300
committerstarkos <none@none>2010-01-07 19:24:17 +0300
commit70ae5b15fb66ae8df462f498941bb28f24dd658c (patch)
treeb3ae14a9b715c6912d82c91793f7fc7236f138c3 /premake4.lua
parent6a97bbd0b4c66bda54431a7246eb17162754fc33 (diff)
Adjusted string length limits to build on VS2003
Diffstat (limited to 'premake4.lua')
-rw-r--r--premake4.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/premake4.lua b/premake4.lua
index 45e6e94..50ce3c9 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -3,19 +3,6 @@
--
--
--- Earlier versions of Visual Studio limit static strings to 1K (IIRC) and choke on
--- the embedded scripts. I'll work around it if people complain.
---
-
- if (_ACTION == "vs2002" or _ACTION == "vs2003") then
- error(
- "\nBecause of compiler limitations, Visual Studio 2002 and 2003 aren't able to\n" ..
- "build this version of Premake. Use the free Visual Studio Express instead.", 0)
- end
-
-
-
---
-- Define the project. Put the release configuration first so it will be the
-- default when folks build using the makefile. That way they don't have to
-- worry about the /scripts argument and all that.