diff options
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 79702a38c78..db9481277f4 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -60,6 +60,11 @@ newoption { } newoption { + trigger = "with-tests", + description = "Enable building tests.", +} + +newoption { trigger = "osd", description = "Choose OSD layer implementation", } @@ -1138,3 +1143,7 @@ if _OPTIONS["with-tools"] then dofile(path.join("src", "tools.lua")) end +if _OPTIONS["with-tests"] then + group "tests" + dofile(path.join("src", "tests.lua")) +end |