authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-02-02 10:53:54-05:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2018-02-02 10:53:54-05:00
log15eb28efafd0c454e8302cbff0f5c90041d0b17d
tree7c9a1037c3cebee4a203d9eda97ef254eda034e6
parent02b61224b234b017cd2397ee6e8936c220b959f5
parent4ec856b0f05b2ee175ce2c119e36bff37f02195c
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Merge pull request #738 from corngood/cygwin-fixes

make lld include paths private

1 files changed, 3 insertions(+), 3 deletions(-)

CMakeLists.txt+3-3
...@@ -172,17 +172,17 @@ else()...@@ -172,17 +172,17 @@ else()
172 COMPILE_FLAGS ${ZIG_LLD_COMPILE_FLAGS}172 COMPILE_FLAGS ${ZIG_LLD_COMPILE_FLAGS}
173 LINK_FLAGS " "173 LINK_FLAGS " "
174 )174 )
175 target_include_directories(embedded_lld_lib PUBLIC175 target_include_directories(embedded_lld_lib PRIVATE
176 "${CMAKE_SOURCE_DIR}/deps/lld/include"176 "${CMAKE_SOURCE_DIR}/deps/lld/include"
177 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"177 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"
178 )178 )
179 target_include_directories(embedded_lld_elf PUBLIC179 target_include_directories(embedded_lld_elf PRIVATE
180 "${CMAKE_SOURCE_DIR}/deps/lld/ELF"180 "${CMAKE_SOURCE_DIR}/deps/lld/ELF"
181 "${CMAKE_SOURCE_DIR}/deps/lld/include"181 "${CMAKE_SOURCE_DIR}/deps/lld/include"
182 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/ELF"182 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/ELF"
183 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"183 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"
184 )184 )
185 target_include_directories(embedded_lld_coff PUBLIC185 target_include_directories(embedded_lld_coff PRIVATE
186 "${CMAKE_SOURCE_DIR}/deps/lld/COFF"186 "${CMAKE_SOURCE_DIR}/deps/lld/COFF"
187 "${CMAKE_SOURCE_DIR}/deps/lld/include"187 "${CMAKE_SOURCE_DIR}/deps/lld/include"
188 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/COFF"188 "${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/COFF"