mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 15:00:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from conans import ConanFile
 | 
						|
 | 
						|
class SupercellWxConan(ConanFile):
 | 
						|
    settings   = ("os", "compiler", "build_type", "arch")
 | 
						|
    requires   = ("boost/1.86.0",
 | 
						|
                  "cpr/1.10.5",
 | 
						|
                  "fontconfig/2.15.0",
 | 
						|
                  "freetype/2.13.2",
 | 
						|
                  "geographiclib/2.4",
 | 
						|
                  "geos/3.13.0",
 | 
						|
                  "glew/2.2.0",
 | 
						|
                  "glm/cci.20230113",
 | 
						|
                  "gtest/1.15.0",
 | 
						|
                  "libcurl/8.10.0",
 | 
						|
                  "libxml2/2.12.7",
 | 
						|
                  "openssl/3.3.2",
 | 
						|
                  "re2/20240702",
 | 
						|
                  "spdlog/1.14.1",
 | 
						|
                  "sqlite3/3.46.1",
 | 
						|
                  "vulkan-loader/1.3.243.0",
 | 
						|
                  "zlib/1.3.1")
 | 
						|
    generators = ("cmake",
 | 
						|
                  "cmake_find_package",
 | 
						|
                  "cmake_paths")
 | 
						|
    default_options = {"geos:shared"      : True,
 | 
						|
                       "libiconv:shared"  : True,
 | 
						|
                       "openssl:no_module": True,
 | 
						|
                       "openssl:shared"   : True}
 | 
						|
 | 
						|
    def requirements(self):
 | 
						|
        if self.settings.os == "Linux":
 | 
						|
            self.requires("onetbb/2021.12.0")
 | 
						|
 | 
						|
    def imports(self):
 | 
						|
        self.copy("*.dll", dst="bin", src="bin")
 | 
						|
        self.copy("*.dylib", dst="bin", src="lib")
 | 
						|
        self.copy("license*", dst="licenses", src=".", folder=True, ignore_case=True)
 |