Doxyfile.in (1639B)
1# 2# Licensed to the Apache Software Foundation (ASF) under one 3# or more contributor license agreements. See the NOTICE file 4# distributed with this work for additional information 5# regarding copyright ownership. The ASF licenses this file 6# to you under the Apache License, Version 2.0 (the 7# "License"); you may not use this file except in compliance 8# with the License. You may obtain a copy of the License at 9# 10# http://www.apache.org/licenses/LICENSE-2.0 11# 12# Unless required by applicable law or agreed to in writing, 13# software distributed under the License is distributed on an 14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15# KIND, either express or implied. See the License for the 16# specific language governing permissions and limitations 17# under the License. 18# 19 20# 21# Project name / version 22# 23 24PROJECT_NAME = libguac 25PROJECT_NUMBER = @PACKAGE_VERSION@ 26 27# 28# Warn about undocumented parameters and return values, but do not fill output 29# with verbose progress info. 30# 31 32QUIET = YES 33WARN_NO_PARAMDOC = YES 34 35# 36# Output format 37# 38 39ALPHABETICAL_INDEX = YES 40GENERATE_HTML = YES 41GENERATE_LATEX = NO 42IGNORE_PREFIX = guac_ vguac_ 43OPTIMIZE_OUTPUT_FOR_C = YES 44OUTPUT_DIRECTORY = doxygen-output 45RECURSIVE = YES 46SHOW_INCLUDE_FILES = NO 47 48# 49# Input format 50# 51 52CASE_SENSE_NAMES = YES 53EXCLUDE_SYMBOLS = __* guac_palette* PRIV_* 54EXCLUDE_PATTERNS = **/private/*.h 55FILE_PATTERNS = *.h 56INPUT = ../../src/libguac/guacamole 57JAVADOC_AUTOBRIEF = YES 58STRIP_FROM_PATH = ../../src/libguac 59TAB_SIZE = 4 60TYPEDEF_HIDES_STRUCT = YES 61