-
-
Notifications
You must be signed in to change notification settings - Fork 621
What's New in 5.0
Jason Perkins edited this page Dec 22, 2015
·
35 revisions
- The executable is now named premake5
- The default project script is now premake5.lua; premake4.lua remains as a fallback.
- --interactive (open an interactive command prompt)
- vs2012, vs2013, vs2015 (Visual Studio 2012, 2013, 2015)
- Custom Rules (still experimental)
- Makefile Projects
- Modules
- Per-Configuration File Lists
- Per-File Configurations
- Per-Project Configurations
- Platforms
- Removes
- System Scripts
- Tokens
- HTTP support
- architecture (new)
- buildaction (new values)
- buildcommands (new)
- builddependencies (new)
- buildlog (new)
- buildmessage (new)
- buildoutputs (new)
- characterset (new)
- callingconvention (new)
- cleancommands (new)
- cleanextensions (new)
-
clr (new, replaces flags
Managed
andUnsafe
) - configfile (new)
- configmap (new)
- configuration (retired)
- configurations (modified)
- copylocal (new)
- debugcommand (new)
- debugconnectcommands (new)
- debugextendedprotocol (new)
- debugport (new)
- debugremotehost (new)
- debugsearchpaths (new)
- debugstartupcommands (new)
- dependson (new)
- disablewarnings (new)
- dotnetframework (new)
-
editandcontinue (new, replaces flag
NoEditAndContinue
) - enablewarnings (new)
- endian (new)
- entrypoint (new)
- exceptionhandling (new)
- external (new)
- externalproject (new)
- externalrule (new)
- fatalwarnings (new)
- fileextension (new)
- filename (new)
- filter (new)
- flags (new values)
-
floatingpoint (new, replaces flags
FloatFast
andFloatStrict
) - forceincludes (new)
- forceusings (new)
- fpu (new)
- gccprefix (new)
- group (new)
- icon (new)
- inlining (new)
- kind (Makefile, None)
- links
- language (new values)
- locale (new)
- makesettings (new)
- namespace (new)
-
nativewchar (new, replaces flag
NativeWChar
) - newaction (modified)
- objdir (modified)
-
optimize (new, replaces flags
OptimizeSize
andOptimizeSpeed
) - pic (new)
- platforms (modified)
- postbuildmessage (new)
- prebuildmessage (new)
- prelinkmessage (new)
- project (modified)
- propertydefinition (new)
- rebuildcommands (new)
-
rtti (new, replaces flag
NoRTTI
) - rule (new)
- rules (new)
- runtime (new)
- solution (name changed)
- startproject (new)
- strictaliasing (new)
- sysincludedirs (new)
- syslibdirs (new)
- system (new)
- toolset (new)
- undefines (new)
-
vectorextensions (new, replaces flags
EnableSSE
andEnableSSE2
) -
warnings (new, replaces flags
ExtraWarnings
andNoWarnings
) - workspace (new)
-
includeexternal (new)
-
require (modified)
-
debug.prompt (new)
-
http.download (new)
-
http.get (new)
-
os.chmod (new)
-
os.islink (new)
-
os.realpath (new)
-
os.uuid (can now generated deterministic name-based UUIDs)
-
path.getabsolute (new "relative to" argument)
-
string.hash (new)
- buildrule
-
flags:
- Component
- EnableSSE, EnableSSE2: use vectorextensions instead
- ExtraWarnings, NoWarnings: use warnings instead
- FloatFast, FloatStrict: use floatingpoint instead
- Managed, Unsafe: use clr instead
- NativeWChar: use nativewchar instead
- NoEditAndContinue: use editandcontinue instead
- NoRTTI: use rtti instead.
- OptimizeSize, OptimizeSpeed: use optimize instead