2025-05-17 15:26:08 +02:00

806 B

Text to display for rule or property definition

display "value"

Parameters

value - Text shown for the rule or property definition.

Applies To

The rule scope.

Availability

Premake 5.0.0 alpha 12 or later.

Examples

rule "myrule"
  display "My custom rule"
  fileextension ".in"

  propertydefinition {
    name = "myoption",
    display = "My option",
    description = "Select the option to use",
    values = { [0] = "option1", [1] = "option2"},
    value = 1
  }

  buildmessage 'custom rule: {copy} %{file.relpath} %{file.basename}'
  buildoutputs { "%{sln.location}/%{file.basename}" }
  buildcommands { "MyScript {myoption} %[%{!file.abspath}] %[%{!sln.location}/%{file.basename}]" }

See Also