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

github.com/windirstat/premake-4.x.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <unknown>2010-01-07 19:24:17 +0300
committerstarkos <unknown>2010-01-07 19:24:17 +0300
commitba8750bf2863335901c4922f8a991e8455b4bdb8 (patch)
treeb3ae14a9b715c6912d82c91793f7fc7236f138c3 /premake4.lua
parentbbf7bbef3a668149418fd973ae66d1def8540ca3 (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.