Build: Don't install private headers

This commit is contained in:
SirLynix
2022-07-27 18:11:00 +02:00
parent 272a5c9ec1
commit 1e1dc3ebce
5 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ if has_config("assimp") then
add_deps("NazaraUtility")
add_packages("assimp")
add_headerfiles("**.hpp", "**.inl", { prefixdir = "private" })
add_headerfiles("**.hpp", "**.inl", { prefixdir = "private", install = false })
add_includedirs(".")
add_files("**.cpp")
end

View File

@@ -16,7 +16,7 @@ if has_config("ffmpeg") then
add_deps("NazaraUtility")
add_packages("ffmpeg")
add_headerfiles("**.hpp", "**.inl", { prefixdir = "private" })
add_headerfiles("**.hpp", "**.inl", { prefixdir = "private", install = false })
add_includedirs(".")
add_files("**.cpp")
end