Install private header files to a private folder

until xmake supports https://github.com/xmake-io/xmake/issues/2577
This commit is contained in:
SirLynix
2022-07-18 08:47:57 +02:00
parent 8f4c828d0c
commit e63bb072da
4 changed files with 4 additions and 6 deletions

View File

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

View File

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