Remove tools, they will be their own packages
Some checks failed
Bigfoot / Clang Format Checks (push) Successful in 11s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build And Upload Conan Dependencies to BigfootPackages (push) Has been cancelled

This commit is contained in:
2026-04-14 23:14:17 +02:00
parent 9b02711f59
commit a2136f5367
8 changed files with 11 additions and 40 deletions

View File

@@ -22,7 +22,6 @@ class Bigfoot(ConanFile):
"coverage": [True, False],
"build_tests": [True, False],
"tracy": [True, False],
"build_tools": [True, False],
"vulkan": [True, False]
}
default_options = {
@@ -32,7 +31,6 @@ class Bigfoot(ConanFile):
"coverage": False,
"build_tests": False,
"tracy": False,
"build_tools": True,
"vulkan": True,
}
@@ -56,10 +54,6 @@ class Bigfoot(ConanFile):
if(self.options.vulkan):
self.options["spirv-cross"].exceptions = False
if(self.options.build_tools):
self.options["assimp"].with_ifc = False
self.options["pugixml"].no_exceptions = True
def build_requirements(self):
self.tool_requires("bin2cpp/1.0.0@bigfootdev/main")
@@ -99,14 +93,6 @@ class Bigfoot(ConanFile):
self.test_requires("gtest/1.17.0")
self.test_requires("pixelmatch-cpp17/1.0.3@bigfootdev/main")
if(self.options.build_tools):
self.requires("spirv-cross/1.4.341.0@bigfootdev/main")
self.requires("shaderc/2026.1@bigfootdev/main")
self.requires("stb/cci.20240531", override=True)
self.requires("assimp/6.0.4@bigfootdev/main")
self.requires("meshoptimizer/1.0@bigfootdev/main")
self.requires("libsquish/1.15")
def generate(self):
tc = CMakeToolchain(self)
@@ -114,7 +100,6 @@ class Bigfoot(ConanFile):
tc.variables["COVERAGE"] = self.options.coverage
tc.variables["BUILD_TESTS"] = self.options.build_tests
tc.variables["TRACY"] = self.options.tracy
tc.variables["BUILD_TOOLS"] = self.options.build_tools
tc.variables["VULKAN"] = self.options.vulkan
tc.generate()