⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jamcompatibility.jam

📁 经典开源游戏glest的源代码
💻 JAM
字号:
#============================================================================# Several hacks to make the build compatible with certain old/broken jam# versions#============================================================================# boostjam is evil: It is compatible to jam 2.4 but has a version number 3.1, we# try to detect boostjam with the ARGV extensionif $(ARGV[0]){    EXIT "Error: You can't use boostjam for this build." ;}# we can't use boostjam at the moment as it still has the bug from jam 2.4 where# settings variables on header targets doesn't workif $(JAMVERSION) <= 2.4{    EXIT "Error: This buildsystem requires jam version 2.5 or later." ;}# All scripts invoked by the build system expect a Bourne or compatible shell.# Reject C-shell and its variants (such as tcsh).  Unfortunately, this is a bit# of an ugly hack.  It would be nicer to perform this logic at the very end of# this file as a last-minute assertion.  Unfortunately, however, it seems that# references to $(SHELL) in any of the included files get bound at the point# of reference, thus we need to perform this filtering as early as possible.if [ Match (csh) : $(SHELL) ]{  SHELL = "/bin/sh" ;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -