Automatically set the OS to Windows when generating for Visual Studio
This commit is contained in:
parent
2e920a1ef1
commit
88db91b2f1
@ -26,6 +26,7 @@ RC1 -> RC2
|
||||
|
||||
- Removed additional MonoDevelop files in clean action
|
||||
- Fixed naming of system libraries in Visual Studio link step
|
||||
- Set OS to Windows when generating for Visual Studio
|
||||
|
||||
|
||||
-----
|
||||
|
@ -1,7 +1,7 @@
|
||||
--
|
||||
-- _premake_main.lua
|
||||
-- Script-side entry point for the main program logic.
|
||||
-- Copyright (c) 2002-2008 Jason Perkins and the Premake project
|
||||
-- Copyright (c) 2002-2009 Jason Perkins and the Premake project
|
||||
--
|
||||
|
||||
|
||||
@ -109,6 +109,12 @@
|
||||
end
|
||||
|
||||
|
||||
-- Some actions imply a particular operating system. Set it early so
|
||||
-- it can be picked up by the scripts.
|
||||
|
||||
_OS = premake.actions[_ACTION].os or _OS
|
||||
|
||||
|
||||
-- If there is a project script available, run it to get the
|
||||
-- project information, available options and actions, etc.
|
||||
|
||||
|
@ -316,6 +316,7 @@
|
||||
trigger = "vs2002",
|
||||
shortname = "Visual Studio 2002",
|
||||
description = "Microsoft Visual Studio 2002",
|
||||
os = "windows",
|
||||
pathstyle = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
@ -344,6 +345,7 @@
|
||||
trigger = "vs2003",
|
||||
shortname = "Visual Studio 2003",
|
||||
description = "Microsoft Visual Studio 2003",
|
||||
os = "windows",
|
||||
pathstyle = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
@ -372,6 +374,7 @@
|
||||
trigger = "vs2005",
|
||||
shortname = "Visual Studio 2005",
|
||||
description = "Microsoft Visual Studio 2005 (SharpDevelop, MonoDevelop)",
|
||||
os = "windows",
|
||||
pathstyle = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
@ -400,6 +403,7 @@
|
||||
trigger = "vs2008",
|
||||
shortname = "Visual Studio 2008",
|
||||
description = "Microsoft Visual Studio 2008",
|
||||
os = "windows",
|
||||
pathstyle = "windows",
|
||||
|
||||
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
|
||||
|
Reference in New Issue
Block a user