Skip to content

buildoptions

starkos edited this page Apr 10, 2021 · 7 revisions

⚠️ We have a new website! Visit now for the most update to date documentation.
       This wiki is no longer being maintained.


Passes arguments directly to the compiler command line without translation.

buildoptions { "options" }

If a project includes multiple calls to buildoptions the lists are concatenated, in the order in which they appear in the script.

Parameters

options is a list of compiler flags and options, specific to a particular compiler.

Applies To

Project configurations.

Availability

Premake 4.0 or later.

Examples

Use pkg-config style configuration when building on Linux with GCC. Build options are always compiler specific and should be targeted to a particular toolset.

configuration { "linux", "gmake" }
  buildoptions { "`wx-config --cxxflags`", "-ansi", "-pedantic" }
Clone this wiki locally