diff options
| author | ruki <[email protected]> | 2023-08-21 22:32:49 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-08-21 22:32:49 +0800 |
| commit | 3af4b92bef5b4f9c58575cb4ea5770d846a554c8 (patch) | |
| tree | a34bb0c00898ed5670cd37822ed6b9a4612e6b12 /tests | |
| parent | 082c0d445eb93734bcf2f010b4c8874f8fcc2f55 (diff) | |
remove unused flags
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/projects/cuda/console_2/xmake.lua | 1 | ||||
| -rw-r--r-- | tests/projects/cuda/static/xmake.lua | 1 | ||||
| -rw-r--r-- | tests/projects/objc/macapp/xmake.lua | 7 |
3 files changed, 7 insertions, 2 deletions
diff --git a/tests/projects/cuda/console_2/xmake.lua b/tests/projects/cuda/console_2/xmake.lua index d2571269e..d04aa8856 100644 --- a/tests/projects/cuda/console_2/xmake.lua +++ b/tests/projects/cuda/console_2/xmake.lua @@ -5,6 +5,5 @@ add_cugencodes("compute_35") target("bin") set_kind("binary") - add_cuflags("-rdc=true") add_includedirs("inc") add_files("src/*.cu") diff --git a/tests/projects/cuda/static/xmake.lua b/tests/projects/cuda/static/xmake.lua index 5cbc8b90d..d88cf7964 100644 --- a/tests/projects/cuda/static/xmake.lua +++ b/tests/projects/cuda/static/xmake.lua @@ -5,7 +5,6 @@ add_cugencodes("compute_30") target("lib") set_kind("static") - add_cuflags("-rdc=true") add_includedirs("inc", {public = true}) add_files("src/lib.cu") diff --git a/tests/projects/objc/macapp/xmake.lua b/tests/projects/objc/macapp/xmake.lua index e1e9e6d74..71e2af16b 100644 --- a/tests/projects/objc/macapp/xmake.lua +++ b/tests/projects/objc/macapp/xmake.lua @@ -1,6 +1,13 @@ add_rules("mode.debug", "mode.release") +rule("test") + add_deps("xcode.application") + after_build(function () + print("xxx") + end) + target("test") add_rules("xcode.application") add_files("src/*.m", "src/**.storyboard", "src/*.xcassets") add_files("src/Info.plist") + add_rules("test") |
