2016-11-13 03:11:54 +00:00
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
#
|
2015-12-15 23:51:48 +00:00
|
|
|
# Project name / version
|
|
|
|
#
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2022-02-23 19:16:43 +00:00
|
|
|
PROJECT_NAME = libguac-terminal
|
2017-12-06 08:34:47 +00:00
|
|
|
PROJECT_NUMBER = @PACKAGE_VERSION@
|
2010-12-08 21:14:04 +00:00
|
|
|
|
|
|
|
#
|
2015-12-15 23:51:48 +00:00
|
|
|
# Warn about undocumented parameters and return values, but do not fill output
|
|
|
|
# with verbose progress info.
|
2010-12-08 21:14:04 +00:00
|
|
|
#
|
|
|
|
|
2015-12-15 23:51:48 +00:00
|
|
|
QUIET = YES
|
|
|
|
WARN_NO_PARAMDOC = YES
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2015-12-15 23:51:48 +00:00
|
|
|
#
|
|
|
|
# Output format
|
|
|
|
#
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2015-12-15 23:51:48 +00:00
|
|
|
ALPHABETICAL_INDEX = YES
|
|
|
|
GENERATE_HTML = YES
|
|
|
|
GENERATE_LATEX = NO
|
|
|
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
|
|
|
OUTPUT_DIRECTORY = doxygen-output
|
2022-02-23 19:16:43 +00:00
|
|
|
RECURSIVE = YES
|
2015-12-15 23:51:48 +00:00
|
|
|
SHOW_INCLUDE_FILES = NO
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2015-12-15 23:51:48 +00:00
|
|
|
#
|
|
|
|
# Input format
|
|
|
|
#
|
2010-12-08 21:14:04 +00:00
|
|
|
|
2015-12-15 23:51:48 +00:00
|
|
|
CASE_SENSE_NAMES = YES
|
|
|
|
FILE_PATTERNS = *.h
|
2022-02-23 19:16:43 +00:00
|
|
|
STRIP_FROM_PATH = ../../src/terminal
|
2022-02-26 02:13:22 +00:00
|
|
|
INPUT = ../../src/terminal/terminal/terminal.h
|
2015-12-15 23:51:48 +00:00
|
|
|
JAVADOC_AUTOBRIEF = YES
|
|
|
|
TAB_SIZE = 4
|
|
|
|
TYPEDEF_HIDES_STRUCT = YES
|
2010-12-08 21:14:04 +00:00
|
|
|
|