您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617
  1. CFLAGS='-I.. -std=c++11 -g -O0'
  2. if [ "$(uname --operating-system)" == "Msys" ]
  3. then
  4. LDFLAGS=-lShlwapi
  5. else
  6. LDFLAGS=
  7. fi
  8. g++ $CFLAGS testFilesystem.cpp ../CodeDweller/filesystem.cpp $LDFLAGS -o testFilesystem
  9. if [ $? -ne 0 ]
  10. then
  11. exit -1
  12. fi
  13. mkdir -p testDir
  14. ./testFilesystem