mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 18:42:33 +02:00
🐛 Fixed polyvox includedirs on linux
This commit is contained in:
parent
39a1047015
commit
02b19bb9ac
1 changed files with 5 additions and 2 deletions
|
@ -35,6 +35,9 @@ class PolyvoxConan(ConanFile):
|
|||
cmake.install()
|
||||
|
||||
def package_info(self):
|
||||
self.cpp_info.includedirs = ['PolyVoxCore/include', 'PolyVoxUtil/include']
|
||||
self.cpp_info.libdirs = ['PolyVoxCore/lib', 'PolyVoxUtil/lib']
|
||||
if self.settings.os == "Windows":
|
||||
self.cpp_info.includedirs = ['PolyVoxCore/include', 'PolyVoxUtil/include']
|
||||
self.cpp_info.libdirs = ['PolyVoxCore/lib', 'PolyVoxUtil/lib']
|
||||
else:
|
||||
self.cpp_info.includedirs = ['include/PolyVoxCore', 'include/PolyVoxUtil']
|
||||
self.cpp_info.libs = collect_libs(self)
|
||||
|
|
Loading…
Reference in a new issue