From af608213935fbc175be2d0549d23daa43d66396c Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Sat, 19 Aug 2017 19:55:14 +0100 Subject: [PATCH] [cli] Remove unused directory include commented code. --- src/CLI/Generator.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/CLI/Generator.cs b/src/CLI/Generator.cs index 9a2f3911..37c75bad 100644 --- a/src/CLI/Generator.cs +++ b/src/CLI/Generator.cs @@ -215,23 +215,13 @@ namespace CppSharp if (Platform.IsMacOS) { var headersPaths = new List { - // Path.Combine(GetSourceDirectory("deps"), "llvm/tools/clang/lib/Headers"), - // Path.Combine(GetSourceDirectory("deps"), "libcxx", "include"), "/usr/include" }; - foreach (var header in headersPaths) - Console.WriteLine(header); - foreach (var header in headersPaths) options.AddSystemIncludeDirs(header); } - // var headersPath = Path.Combine(GetSourceDirectory("build"), "headers", "osx"); - - // options.AddSystemIncludeDirs(Path.Combine(headersPath, "include")); - // options.AddSystemIncludeDirs(Path.Combine(headersPath, "clang", "4.2", "include")); - // options.AddSystemIncludeDirs(Path.Combine(headersPath, "libcxx", "include")); options.AddArguments("-stdlib=libc++"); }