diff options
Diffstat (limited to 'tests/projects/linux')
| -rw-r--r-- | tests/projects/linux/driver/hello/xmake.lua | 2 | ||||
| -rw-r--r-- | tests/projects/linux/driver/hello_custom/xmake.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/linux/driver/hello/xmake.lua b/tests/projects/linux/driver/hello/xmake.lua index bac728434..810ed8fa8 100644 --- a/tests/projects/linux/driver/hello/xmake.lua +++ b/tests/projects/linux/driver/hello/xmake.lua @@ -1,7 +1,7 @@ add_requires("linux-headers", {configs = {driver_modules = true}}) target("hello") - add_rules("platform.linux.driver") + add_rules("platform.linux.module") add_files("src/*.c") add_packages("linux-headers") set_license("GPL-2.0") diff --git a/tests/projects/linux/driver/hello_custom/xmake.lua b/tests/projects/linux/driver/hello_custom/xmake.lua index 846bddc55..a51f76c82 100644 --- a/tests/projects/linux/driver/hello_custom/xmake.lua +++ b/tests/projects/linux/driver/hello_custom/xmake.lua @@ -1,6 +1,6 @@ option("linux-headers", {showmenu = true, description = "Set linux-headers path."}) target("hello") - add_rules("platform.linux.driver") + add_rules("platform.linux.module") add_files("src/*.c") set_values("linux.driver.linux-headers", "$(linux-headers)") |
