summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2018-07-11 00:31:28 +0800
committerruki <[email protected]>2018-07-10 21:08:53 +0800
commit3984c855f6e44fb86b0c84d2421b30ec0825cf66 (patch)
treef9b129cbad4816a5ea9e27b36909e3dd9366de70
parent5d3c551781bca4e8c32e73029de9ce342afad39c (diff)
remove config header when installing
-rw-r--r--xmake/actions/install/install.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/xmake/actions/install/install.lua b/xmake/actions/install/install.lua
index 3fffa2689..af4567bec 100644
--- a/xmake/actions/install/install.lua
+++ b/xmake/actions/install/install.lua
@@ -68,12 +68,6 @@ function _install_library(target)
-- copy the target file
os.cp(target:targetfile(), librarydir)
- -- copy the config.h to the include directory
- local configheader, configoutput = target:configheader(includedir)
- if configheader and configoutput then
- os.cp(configheader, configoutput)
- end
-
-- copy headers to the include directory
local srcheaders, dstheaders = target:headerfiles(includedir)
if srcheaders and dstheaders then