scons recipe: made SDL base prerequisite.
This commit is contained in:
parent
797ba0ffb1
commit
26b6c550b7
1 changed files with 2 additions and 2 deletions
|
@ -334,11 +334,11 @@ conf = Configure(env, custom_tests = { 'CheckPKGConfig' : CheckPKGConfig,
|
|||
# conf.CheckPKGConfig('0.15.0') or Die("Base prerequisites are not met.")
|
||||
|
||||
if env["prereqs"]:
|
||||
conf.CheckBoost("iostreams", require_version = "1.33.0") or Die("Boost prerequisites are not met.")
|
||||
conf.CheckBoost("iostreams", require_version = "1.33.0") and \
|
||||
conf.CheckSDL(require_version = '1.2.7') or Die("Base prerequisites are not met.")
|
||||
|
||||
have_client_prereqs = \
|
||||
conf.CheckBoost("regex") and \
|
||||
conf.CheckSDL(require_version = '1.2.7') and \
|
||||
conf.CheckSDL("SDL_ttf", require_version = "2.0.8") and \
|
||||
conf.CheckSDL("SDL_mixer", require_version = '1.2.0') and \
|
||||
conf.CheckSDL("SDL_image", require_version = '1.2.0') and \
|
||||
|
|
Loading…
Add table
Reference in a new issue