import os from conan import ConanFile from conan.errors import ConanInvalidConfiguration from conan.tools.build import check_min_cppstd from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain, cmake_layout from conan.tools.files import ( apply_conandata_patches, copy, export_conandata_patches, get, replace_in_file, rmdir, ) from conan.tools.microsoft import is_msvc, check_min_vs from conan.tools.scm import Version, Git required_conan_version = ">=1.52.0" class EastlConan(ConanFile): name = "eastl" description = ( "EASTL stands for Electronic Arts Standard Template Library. " "It is an extensive and robust implementation that has an " "emphasis on high performance." ) topics = ("eastl", "stl", "high-performance") license = "BSD-3-Clause" url = "https://github.com/conan-io/conan-center-index" homepage = "https://github.com/electronicarts/EASTL" package_type = "library" settings = "os", "arch", "compiler", "build_type" options = { "shared": [True, False], "fPIC": [True, False], } default_options = { "shared": False, "fPIC": True, } @property def _min_cppstd(self): if Version(self.version) < "3.27.00": return 14 else: return 17 @property def _compilers_minimum_version(self): return { "Visual Studio": "14", "msvc": "190", "gcc": "5" if Version(self.version) < "3.21.12" else "6", "clang": "3.2", "apple-clang": "4.3", } def export_sources(self): export_conandata_patches(self) def config_options(self): if self.settings.os == "Windows": del self.options.fPIC def configure(self): if self.options.shared: self.options.rm_safe("fPIC") def layout(self): cmake_layout(self, src_folder="src") def requirements(self): git = Git(self, self.recipe_folder) branch = git.run("rev-parse --abbrev-ref HEAD").strip().lower() if self.version >= "3.27.00": self.requires(f"eabase/01082025@bigfootdev/{branch}", transitive_headers=True) elif self.version == "3.21.23": self.requires("eabase/18082024", transitive_headers=True) else: self.requires("eabase/2.09.12", transitive_headers=True) def validate(self): if self.settings.compiler.get_safe("cppstd"): check_min_cppstd(self, self._min_cppstd) minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False) if minimum_version and Version(self.settings.compiler.version) < minimum_version: raise ConanInvalidConfiguration( f"{self.ref} requires C++{self._min_cppstd}, which your compiler does not support." ) if is_msvc(self) and check_min_vs(self, "193", raise_invalid=False) and Version(self.version) < "3.21.12": raise ConanInvalidConfiguration(f"{self.ref} is not compatible with Visual Studio 2022, please use version >= 3.21.12") def source(self): get(self, **self.conan_data["sources"][self.version], strip_root=True) def generate(self): tc = CMakeToolchain(self) tc.variables["EASTL_BUILD_BENCHMARK"] = False tc.variables["EASTL_BUILD_TESTS"] = False tc.variables["CMAKE_CXX_STANDARD"] = self._min_cppstd tc.generate() CMakeDeps(self).generate() def _patch_sources(self): apply_conandata_patches(self) replace_in_file( self, os.path.join(self.source_folder, "CMakeLists.txt"), "include(CommonCppFlags)", "", ) def build(self): self._patch_sources() cmake = CMake(self) cmake.configure() cmake.build() def package(self): copy( self, "LICENSE", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"), ) copy( self, "3RDPARTYLICENSES.TXT", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"), ) cmake = CMake(self) cmake.install() rmdir(self, os.path.join(self.package_folder, "doc")) def package_info(self): self.cpp_info.libs = ["EASTL"] if self.settings.os in ["Linux", "FreeBSD"]: self.cpp_info.system_libs.extend(["m", "pthread"]) if self.options.shared: self.cpp_info.defines.append("EA_DLL") self.cpp_info.set_property("cmake_file_name", "EASTL") self.cpp_info.set_property("cmake_target_name", "EASTL::EASTL") # TODO: to remove in conan v2 once cmake_find_package_* generators removed self.cpp_info.filenames["cmake_find_package"] = "EASTL" self.cpp_info.filenames["cmake_find_package_multi"] = "EASTL" self.cpp_info.names["cmake_find_package"] = "EASTL" self.cpp_info.names["cmake_find_package_multi"] = "EASTL"