protected List<String> defaultAppendOptions(
     CompileCppOptions options, List<String> command, VirtualFile file) {
   command = BuildUtils.appendAllOptions(command, options.getProjectCompilerOptions());
   command =
       BuildUtils.appendAllOptions(
           command,
           options.getCompilerOptions().replace(MARKER, getEscapedPathToFile(file.getPath())));
   return command;
 }