summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
authorruki <[email protected]>2023-08-01 17:07:41 +0800
committerGitHub <[email protected]>2023-08-01 17:07:41 +0800
commit9b3d689a2bac641713e463ffec9691580b7c9847 (patch)
tree3fc32923dd67f248ed57f3b1c42ae0addfb6088a /xmake/modules
parent75cb0b3346bac8aca1b0effa95387e1587a52ae6 (diff)
parent0f8899180e72c65ce48b37d30902b20f315bbdb9 (diff)
Merge pull request #4032 from xmake-io/deprecated
remove some deprecated apis
Diffstat (limited to 'xmake/modules')
-rw-r--r--xmake/modules/target/action/clean/main.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/xmake/modules/target/action/clean/main.lua b/xmake/modules/target/action/clean/main.lua
index 0335aa648..06bd39f70 100644
--- a/xmake/modules/target/action/clean/main.lua
+++ b/xmake/modules/target/action/clean/main.lua
@@ -53,10 +53,6 @@ function main(target)
remove_files(target:pcoutputfile("c"))
remove_files(target:pcoutputfile("cxx"))
- -- TODO remove the header files (deprecated)
- local _, dstheaders = target:headers()
- remove_files(dstheaders)
-
-- remove the clean files
remove_files(target:get("cleanfiles"))
@@ -67,9 +63,6 @@ function main(target)
local _, configfiles = target:configfiles()
remove_files(configfiles)
- -- TODO remove the config.h file (deprecated)
- remove_files(target:configheader())
-
-- remove all dependent files for each platform
remove_files(target:dependir({root = true}))