Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
luadebug committed Dec 27, 2024
1 parent e9084dc commit f6520d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/p/pffft/port/xmake.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_rules("mode.debug", "mode.release")

option("nosimd")
option("simd")
set_default(false)
set_description("Build without SIMD support.")
add_defines("PFFFT_SIMD_DISABLE")
Expand Down
4 changes: 3 additions & 1 deletion packages/p/pffft/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ package("pffft")
set_homepage("https://bitbucket.org/jpommier/pffft/")
set_description("PFFFT, a pretty fast Fourier Transform.")
set_license("BSD-like (FFTPACK license)")

add_urls("https://bitbucket.org/jpommier/pffft.git")
add_configs("nosimd", {description = "Build without SIMD support.", default = false, type = "boolean"})

add_configs("simd", {description = "Build without SIMD support.", default = true, type = "boolean"})

if not is_plat("windows") then
add_syslinks("m")
Expand Down

0 comments on commit f6520d5

Please sign in to comment.