From 4ecced1453e3a030c8d38202bbeeddce10ba8c9b Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Fri, 10 Jun 2022 14:53:15 +0200 Subject: build: added catch2 option also added some comments for the vfs option --- xmake.lua | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'xmake.lua') diff --git a/xmake.lua b/xmake.lua index c492ca181..de63f205b 100644 --- a/xmake.lua +++ b/xmake.lua @@ -108,7 +108,9 @@ end if is_os("windows") then option("vfs") - set_showmenu(true) + -- note: this is an old prototype and is not functional at all at the moment + set_default(false) + set_showmenu(false) set_description("Enable VFS functionality") option_end() add_define_by_config("ZEN_WITH_VFS", "vfs") @@ -121,6 +123,13 @@ if is_os("windows") then add_define_by_config("ZEN_WITH_HTTPSYS", "httpsys") end +option("catch2") + set_default(false) + set_showmenu(true) + set_description("Use catch2 to run tests") +option_end() +add_define_by_config("ZEN_USE_CATCH2", "catch2") + option("compute") set_default(true) set_showmenu(true) @@ -136,6 +145,7 @@ option_end() add_define_by_config("ZEN_WITH_EXEC_SERVICES", "exec") option("zenmesh") + -- note: this is an old prototype and is not functional at all at the moment set_default(false) set_showmenu(true) set_description("Enables Zen's mesh feature") -- cgit v1.2.3