1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

Merge pull request #4219 from smanolloff/add-tbb-dependency

Add TBB in conanfile and CMakeLists
This commit is contained in:
Ivan Savenko 2024-07-08 19:34:08 +03:00 committed by GitHub
commit ae689625e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 4 deletions

View File

@ -519,7 +519,7 @@ if(ENABLE_LAUNCHER OR ENABLE_EDITOR)
endif()
endif()
if(ENABLE_NULLKILLER_AI AND ENABLE_CLIENT)
if(ENABLE_CLIENT)
find_package(TBB REQUIRED)
endif()

View File

@ -19,11 +19,10 @@ class VCMI(ConanFile):
"sdl_image/[~2.0.5]",
"sdl_mixer/[~2.0.4]",
"sdl_ttf/[~2.0.18]",
]
_nullkillerAIRequires = [
"onetbb/[^2021.3]",
]
requires = _libRequires + _clientRequires + _nullkillerAIRequires
requires = _libRequires + _clientRequires
options = {
"default_options_of_requirements": [True, False],