Skip to content

Commit

Permalink
Fix propagation of feature options
Browse files Browse the repository at this point in the history
  • Loading branch information
braxtons12 committed Mar 6, 2024
1 parent bc82b83 commit cd5948e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xmake.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---@diagnostic disable: undefined-global,undefined-field
set_project("hyperion_mpl")
set_version("0.7.1")
set_version("0.7.2")

set_xmakever("2.8.7")

Expand Down Expand Up @@ -65,8 +65,8 @@ target("hyperion_mpl", function()
import("hyperion_compiler_settings", { alias = "settings" })
settings.set_compiler_settings(target)
end)
add_options("hyperion_enable_tracy")
add_options("hyperion_enable_testing")
add_options("hyperion_enable_tracy", {public = true})
add_options("hyperion_enable_testing", {public = true})

add_packages("hyperion_platform", { public = true })
end)
Expand Down

0 comments on commit cd5948e

Please sign in to comment.