mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 01:03:19 +02:00
📦 Added SteamWorks Conan package
This commit is contained in:
parent
7006a1de41
commit
edb79980f8
1 changed files with 62 additions and 0 deletions
62
conan-recipes/steamworks/conanfile.py
Normal file
62
conan-recipes/steamworks/conanfile.py
Normal file
|
@ -0,0 +1,62 @@
|
|||
from conan import ConanFile
|
||||
from conan.tools.files import get, copy, collect_libs
|
||||
import os
|
||||
|
||||
|
||||
class SteamWorksConan(ConanFile):
|
||||
name = "steamworks"
|
||||
version = "158a"
|
||||
author = "Edgar (Edgar@AnotherFoxGuy.com)"
|
||||
settings = "os", "arch"
|
||||
|
||||
def source(self):
|
||||
get(
|
||||
self,
|
||||
url="https://build-deps.overte.org/dependencies/steamworks_sdk_158a.zip",
|
||||
sha256="69679da69158ac3f76e3ad955568e0d70925a092dd9407b88b0ab53160ee8991",
|
||||
strip_root=True,
|
||||
)
|
||||
|
||||
def package(self):
|
||||
copy(
|
||||
self,
|
||||
"*.h",
|
||||
os.path.join(self.source_folder, "public"),
|
||||
os.path.join(self.package_folder, "include"),
|
||||
)
|
||||
if self.settings.os == "Windows":
|
||||
copy(
|
||||
self,
|
||||
"*.lib",
|
||||
os.path.join(self.source_folder, "redistributable_bin", "win64"),
|
||||
os.path.join(self.package_folder, "lib"),
|
||||
keep_path=False,
|
||||
)
|
||||
copy(
|
||||
self,
|
||||
"*.dll",
|
||||
os.path.join(self.source_folder, "redistributable_bin", "win64"),
|
||||
os.path.join(self.package_folder, "bin"),
|
||||
keep_path=False,
|
||||
)
|
||||
elif self.settings.os == "Macos":
|
||||
copy(
|
||||
self,
|
||||
"*.dylib",
|
||||
os.path.join(self.source_folder, "redistributable_bin", "osx"),
|
||||
os.path.join(self.package_folder, "lib"),
|
||||
keep_path=False,
|
||||
)
|
||||
else:
|
||||
copy(
|
||||
self,
|
||||
"*.so",
|
||||
os.path.join(self.source_folder, "redistributable_bin", "linux64"),
|
||||
os.path.join(self.package_folder, "lib"),
|
||||
keep_path=False,
|
||||
)
|
||||
|
||||
def package_info(self):
|
||||
self.cpp_info.set_property("cmake_file_name", "Steamworks")
|
||||
self.cpp_info.set_property("cmake_target_name", "Steam::Works")
|
||||
self.cpp_info.libs = collect_libs(self)
|
Loading…
Reference in a new issue