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

📄 jamfile

📁 CUNIT
💻
字号:
## Jamfile to build CUnit - internal testing# (see http://www.freetype.org/jam/index.html)## Copyright (C) 2004  Jerry St.Clair## This library is free software; you can redistribute it and/or# modify it under the terms of the GNU Library General Public# License as published by the Free Software Foundation; either# version 2 of the License, or (at your option) any later version.## This library is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU# Library General Public License for more details.## You should have received a copy of the GNU Library General Public# License along with this library; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA#---------------------------------------------------------------------------SubDir TOP CUnit Sources Test ;TEST_PROG = test_cunit ;SubDirHdrs $(CUNIT_HDR_DIR) ;SubDirCcFlags   -I$(TOP)$(SLASH)CUnit$(SLASH)Sources$(SLASH)Test   -DCUNIT_BUILD_TESTS  -DCUNIT_DO_NOT_DEFINE_UNLESS_BUILDING_TESTS   -DMEMTRACE ;# set location for target, source, and temporary filesLOCATE_TARGET = $(TMP_DIR)$(SLASH)CUnit$(SLASH)test ;SEARCH_SOURCE +=  $(TOP)$(SLASH)CUnit  $(TOP)$(SLASH)CUnit$(SLASH)Headers  $(TOP)$(SLASH)CUnit$(SLASH)Sources$(SLASH)Automated  $(TOP)$(SLASH)CUnit$(SLASH)Sources$(SLASH)Basic  $(TOP)$(SLASH)CUnit$(SLASH)Sources$(SLASH)Console  $(TOP)$(SLASH)CUnit$(SLASH)Sources$(SLASH)Curses  $(TOP)$(SLASH)CUnit$(SLASH)Sources$(SLASH)Framework  $(TOP)$(SLASH)CUnit$(SLASH)Sources$(SLASH)Win ;# extra symbolic targets for building test programDEPENDS test : $(TEST_PROG)$(SUFEXE) ;NOTFILE test ;SOURCES =  test_cunit.c                                                       Automated.c  Console.c  Basic.c  CUError.c  MyMem.c  TestDB.c  TestRun.c  Util.c ;if $(UNIX){  SOURCES += Curses.c ;}else if $(NT){  SOURCES += Win.c ;}Main $(TEST_PROG) : $(SOURCES) ;MakeLocate $(TEST_PROG)$(SUFEXE) : $(BUILD_DIR) ;if $(UNIX){  LinkLibraries $(TEST_PROG) : libncurses$(SUFLIB) ;  LOCATE on libncurses$(SUFLIB) = $(SYS_LIB_DIR) ;}if $(NT){  if ($(BCCROOT) || ($(TOOLSET) = BORLANDC))  {    # need to fix Borland to include library location    LINKFLAGS on $(TEST_PROG)$(SUFEXE) += -L$(STDLIBPATH) -tWC ;  }  else if $(MSVCNT) || $(TOOLSET) = VISUALC)  {    # VC won't allow use of local exit() without link flag    LINKFLAGS on $(TEST_PROG)$(SUFEXE) += /FORCE:MULTIPLE ;  }}if $(INSTALL_SHARE_DIR){  InstallCUnitBin $(INSTALL_SHARE_DIR)$(SLASH)Test : $(TEST_PROG)$(SUFEXE) ;}

⌨️ 快捷键说明

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