From c188a8692b34463a41c7f6d6c84cf69b216fa8e0 Mon Sep 17 00:00:00 2001 From: guigues Date: Tue, 29 Jan 2008 14:50:58 +0000 Subject: [PATCH] *** empty log message *** --- packages/CMakeLists.txt | 2 +- packages/std/CMakeLists.txt | 121 ++++ packages/std/Configure.cmake | 25 + packages/std/bbs/CMakeLists.txt | 4 + packages/std/doc/CMakeLists.txt | 5 + packages/std/doc/bbdoc/CMakeLists.txt | 2 + packages/std/doc/doxygen/CMakeLists.txt | 22 + packages/std/doc/doxygen/DoxyMainPage.txt | 15 + packages/std/doc/doxygen/Doxyfile.txt | 764 ++++++++++++++++++++++ packages/std/src/CMakeLists.txt | 5 + packages/void-bbtk-package.tgz | Bin 0 -> 11742 bytes 11 files changed, 964 insertions(+), 1 deletion(-) create mode 100644 packages/std/CMakeLists.txt create mode 100644 packages/std/Configure.cmake create mode 100644 packages/std/bbs/CMakeLists.txt create mode 100644 packages/std/doc/CMakeLists.txt create mode 100644 packages/std/doc/bbdoc/CMakeLists.txt create mode 100644 packages/std/doc/doxygen/CMakeLists.txt create mode 100755 packages/std/doc/doxygen/DoxyMainPage.txt create mode 100755 packages/std/doc/doxygen/Doxyfile.txt create mode 100644 packages/std/src/CMakeLists.txt create mode 100644 packages/void-bbtk-package.tgz diff --git a/packages/CMakeLists.txt b/packages/CMakeLists.txt index 715c400..436e3cc 100644 --- a/packages/CMakeLists.txt +++ b/packages/CMakeLists.txt @@ -3,5 +3,5 @@ SET(BBTK_CORE_PACKAGE ON) #----------------------------------------------------------------------------- SUBDIRS(wx) -#SUBDIRS(std) +SUBDIRS(std) #----------------------------------------------------------------------------- diff --git a/packages/std/CMakeLists.txt b/packages/std/CMakeLists.txt new file mode 100644 index 0000000..51e7e45 --- /dev/null +++ b/packages/std/CMakeLists.txt @@ -0,0 +1,121 @@ +#=========================================================================== +# SETTINGS FOR A BBTK PACKAGE +#=========================================================================== + +#=========================================================================== +# THE NAME OF THE BBTK PACKAGE = NAME OF THE CURRENT DIRECTORY +# GET_FILENAME_COMPONENT(BBTK_PACKAGE_NAME ${CMAKE_CURRENT_SOURCE_DIR} NAME) +SET(BBTK_PACKAGE_NAME std) +#=========================================================================== + +#=========================================================================== +# IF IT IS A STANDALONE PROJECT UNCOMMENT NEXT LINE TO DECLARE YOUR PROJECT +# PROJECT(bb${BBTK_PACKAGE_NAME}) +#=========================================================================== + + +#=========================================================================== +# UNCOMMENT EACH LIBRARY NEEDED +# SET(BBTK_PACKAGE_USE_VTK ON) +# SET(BBTK_PACKAGE_USE_ITK ON) +# SET(BBTK_PACKAGE_USE_GDCM ON) +# SET(BBTK_PACKAGE_USE_GSMIS ON) +# SET(${BBTK_PACKAGE_NAME}_USE_WXWIDGETS ON) +#=========================================================================== + +#=========================================================================== +# PACKAGE AUTHOR +# !!! NO COMMA ALLOWED !!! +SET(BBTK_PACKAGE_AUTHOR "laurent.guigues at creatis.insa-lyon.fr") +#=========================================================================== + +#=========================================================================== +# PACKAGE DESCRIPTION +SET(BBTK_PACKAGE_DESCRIPTION "Basic useful boxes") +#=========================================================================== + +#=========================================================================== +# PACKAGE VERSION NUMBER +SET(BBTK_PACKAGE_MAJOR_VERSION 1) +SET(BBTK_PACKAGE_MINOR_VERSION 0) +SET(BBTK_PACKAGE_BUILD_VERSION 0) +#=========================================================================== + +#=========================================================================== +# THE SOURCES OF THE PACKAGE +# EITHER UNCOMMENT NEXT LINE TO COMPILE ALL .cxx OF THE src DIRECTORY : +SET(BBTK_PACKAGE_COMPILE_ALL_CXX ON) +# ... OR LIST THE FILES TO COMPILE MANUALLY : +#SET(BBTK_PACKAGE_SOURCES +# LIST HERE THE FILES TO COMPILE TO BUILD THE LIB +# E.G. TO COMPILE "toto.cxx" ADD "toto" (NO EXTENSION) +# THE PATH MUST BE RELATIVE TO THE src FOLDER +# ) +#=========================================================================== + +#=========================================================================== +# THE xml SOURCES OF THE PACKAGE +# EITHER UNCOMMENT NEXT LINE TO bbfy ALL .xml OF THE src DIRECTORY : +SET(BBTK_PACKAGE_COMPILE_ALL_XML ON) +# ... OR LIST THE FILES TO COMPILE MANUALLY : +#SET(BBTK_PACKAGE_XML_SOURCES +# LIST HERE THE FILES TO bbfy TO BUILD THE LIB +# E.G. TO bbfy "toto.xml" ADD "toto" (NO EXTENSION) +# THE PATH MUST BE RELATIVE TO THE src FOLDER +# ) +#=========================================================================== + +#=========================================================================== +# THE SCRIPT-DEFINED BOXES OF THE PACKAGE (bbs) +# EITHER UNCOMMENT NEXT LINE TO INCLUDE ALL .bbs OF THE bbs/boxes DIRECTORY : +SET(BBTK_PACKAGE_INCLUDE_ALL_BBS_BOXES ON) +# ... OR LIST THE FILES TO INCLUDE MANUALLY : +# SET(BBTK_PACKAGE_BBS_BOXES +# LIST HERE THE bbs FILES TO INCLUDE +# E.G. TO INCLUDE "boxes/bbtoto.bbs" ADD "boxes/bbtoto" (NO EXTENSION) +# !! THE PATH MUST BE RELATIVE TO THE bbs FOLDER !! +#) +#=========================================================================== + +#=========================================================================== +# THE SCRIPT-DEFINED APPLICATIONS OF THE PACKAGE (bbs) +# EITHER UNCOMMENT NEXT LINE TO INCLUDE ALL .bbs OF THE bbs/appli DIRECTORY : +SET(BBTK_PACKAGE_INCLUDE_ALL_BBS_APPLI ON) +# ... OR LIST THE FILES TO INCLUDE MANUALLY : +# SET(BBTK_PACKAGE_BBS_APPLI +# LIST HERE THE bbs FILES TO INCLUDE +# E.G. TO INCLUDE "appli/testToto.bbs" ADD "appli/testToto" (NO EXTENSION) +# !! THE PATH MUST BE RELATIVE TO THE bbs FOLDER !! +#) +#=========================================================================== + +#=========================================================================== +INCLUDE_DIRECTORIES( + # LIST HERE YOUR INCLUDE DIRECTORIES + # EXCEPT BBTK'S AND THE INCLUDE DIRS THAT WERE SET + # BY INCLUDING A LIBRARY USE FILE + ) +#=========================================================================== + + +#=========================================================================== +SET(BBTK_PACKAGE_LIBS + # LIST HERE THE LIBS TO LINK AGAINST (EXCEPT BBTK) + ) +#=========================================================================== + + + +#=========================================================================== +# END OF USER SECTION +#=========================================================================== + +#=========================================================================== +# Include configuration script +INCLUDE(Configure.cmake) +#=========================================================================== + +#=========================================================================== +# EOF +#=========================================================================== + diff --git a/packages/std/Configure.cmake b/packages/std/Configure.cmake new file mode 100644 index 0000000..cb28fec --- /dev/null +++ b/packages/std/Configure.cmake @@ -0,0 +1,25 @@ +#=========================================================================== +# If the package is not a "core" bbtk package (included into the toolkit) +# then we have to find (and use) bbtk +IF(NOT BBTK_CORE_PACKAGE) + #------------------------------------------------------------------------- + # Find and use the Black Box Toolkit + # Search BBTK + FIND_PACKAGE(BBTK) + # If bbtk found + IF(BBTK_FOUND) + INCLUDE(${BBTK_USE_FILE}) + SET(BBTK_PACKAGE_LIBS + ${BBTK_PACKAGE_LIBS} + ${BBTK_LIBRARIES}) + MARK_AS_ADVANCED(BBTK_DIR) + ENDIF(BBTK_FOUND) + #------------------------------------------------------------------------- +ENDIF(NOT BBTK_CORE_PACKAGE) +#=========================================================================== + +#=========================================================================== +# Include package configuration cmake script from bbtk dir +INCLUDE(${BBTK_DIR}/BBTKConfigurePackage.cmake) +#=========================================================================== + diff --git a/packages/std/bbs/CMakeLists.txt b/packages/std/bbs/CMakeLists.txt new file mode 100644 index 0000000..0e80463 --- /dev/null +++ b/packages/std/bbs/CMakeLists.txt @@ -0,0 +1,4 @@ + +INCLUDE(${BBTK_DIR}/BBTKConfigurePackage_bbs.cmake) + + diff --git a/packages/std/doc/CMakeLists.txt b/packages/std/doc/CMakeLists.txt new file mode 100644 index 0000000..cdeb946 --- /dev/null +++ b/packages/std/doc/CMakeLists.txt @@ -0,0 +1,5 @@ +#=========================================================================== +# Include package doc configuration cmake script +INCLUDE(${BBTK_DIR}/BBTKConfigurePackage_doc.cmake) +#=========================================================================== + diff --git a/packages/std/doc/bbdoc/CMakeLists.txt b/packages/std/doc/bbdoc/CMakeLists.txt new file mode 100644 index 0000000..16518fb --- /dev/null +++ b/packages/std/doc/bbdoc/CMakeLists.txt @@ -0,0 +1,2 @@ +INCLUDE(${BBTK_DIR}/BBTKCreatePackageBBdoc.cmake) +BBTK_CREATE_PACKAGE_BBDOC(${BBTK_PACKAGE_NAME}) diff --git a/packages/std/doc/doxygen/CMakeLists.txt b/packages/std/doc/doxygen/CMakeLists.txt new file mode 100644 index 0000000..531397d --- /dev/null +++ b/packages/std/doc/doxygen/CMakeLists.txt @@ -0,0 +1,22 @@ + +CONFIGURE_FILE( + ${CMAKE_CURRENT_SOURCE_DIR}/DoxyMainPage.txt + ${CMAKE_CURRENT_BINARY_DIR}/DoxyMainPage.txt + IMMEDIATE + ) + +SET(INPUT + ${CMAKE_CURRENT_BINARY_DIR}/DoxyMainPage.txt + ${CMAKE_CURRENT_SOURCE_DIR}/../../src + ) + + +INCLUDE(${BBTK_DIR}/BBTKBuildDoxygenDoc.cmake) + +BBTK_BUILD_DOXYGEN_DOC( + "${BBTK_PACKAGE_NAME}" + "${INPUT}" + "${BBTK_PACKAGE_DOXYGEN_REL_PATH}" + "${DOXYGEN_DOC_PREDEFINED}" + ) + diff --git a/packages/std/doc/doxygen/DoxyMainPage.txt b/packages/std/doc/doxygen/DoxyMainPage.txt new file mode 100755 index 0000000..eb502b7 --- /dev/null +++ b/packages/std/doc/doxygen/DoxyMainPage.txt @@ -0,0 +1,15 @@ +/** + * \mainpage wx package documentation + +\htmlonly + + + +\endhtmlonly + + + + + + + */ diff --git a/packages/std/doc/doxygen/Doxyfile.txt b/packages/std/doc/doxygen/Doxyfile.txt new file mode 100755 index 0000000..0dc4306 --- /dev/null +++ b/packages/std/doc/doxygen/Doxyfile.txt @@ -0,0 +1,764 @@ +# Doxyfile 1.2.14 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# General configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. +PROJECT_NAME = @DOXYGEN_PROJECT_NAME@ + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. +PROJECT_NUMBER = @PROJECT_VERSION@ + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. +OUTPUT_DIRECTORY = @DOXYGEN_OUTPUT@ + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, +# German, Greek, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, +# Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. +OUTPUT_LANGUAGE = English + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. +EXTRACT_PRIVATE = YES + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. +EXTRACT_LOCAL_CLASSES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these class will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. +HIDE_UNDOC_CLASSES = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +REPEAT_BRIEF = YES + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited +# members of a class in the documentation of that class as if those members were +# ordinary class members. Constructors, destructors and assignment operators of +# the base classes will not be shown. +INLINE_INHERITED_MEMB = YES + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. It is allowed to use relative paths in the argument list. +STRIP_FROM_PATH = + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. +INTERNAL_DOCS = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. +STRIP_CODE_COMMENTS = YES + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower case letters. If set to YES upper case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# users are adviced to set this option to NO. +CASE_SENSE_NAMES = YES + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. +SHORT_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. +HIDE_SCOPE_NAMES = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. +VERBATIM_HEADERS = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put list of the files that are included by a file in the documentation +# of that file. +SHOW_INCLUDE_FILES = YES + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explict @brief command for a brief description. +JAVADOC_AUTOBRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# reimplements. +INHERIT_DOCS = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. +SORT_MEMBER_DOCS = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +DISTRIBUTE_GROUP_DOC = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. +TAB_SIZE = 8 + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. +GENERATE_BUGLIST = YES + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. +ALIASES = + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consist of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. +MAX_INITIALIZER_LINES = 30 + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. +# For instance some of the names that are used will be different. The list +# of all members will be omitted, etc. +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. +SHOW_USED_FILES = YES + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, then doxygen will generate warnings +# for error documented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. +WARN_IF_DOC_ERROR = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. +WARN_LOGFILE = @DOXYGEN_LOGFILE@ + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. +INPUT = @DOXYGEN_INPUT@ + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp +# *.h++ *.idl *.odl +FILE_PATTERNS = *.h *.cxx *.txx + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +EXCLUDE = @DOXYGEN_EXCLUDE@ + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories +# that are symbolic links (a Unix filesystem feature) are excluded from the input. +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +EXCLUDE_PATTERNS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. +EXAMPLE_PATTERNS = *.cxx + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +INPUT_FILTER = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse. +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. +INLINE_SOURCES = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. +REFERENCES_RELATION = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) +COLS_IN_ALPHA_INDEX = 3 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. +HTML_OUTPUT = @DOXYGEN_HTML_OUTPUT@ + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the Html help documentation and to the tree view. +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript and frames is required (for instance Mozilla, Netscape 4.0+, +# or Internet explorer 4.0+). Note that for large projects the tree generation +# can take a very long time. In such cases it is better to disable this feature. +# Windows users are probably better off using the HTML help feature. +GENERATE_TREEVIEW = YES + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. +LATEX_OUTPUT = latex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. +LATEX_BATCHMODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimised for Word 97 and may not look very pretty with +# other RTF readers or editors. +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assigments. You only have to provide +# replacements, missing definitions are set to their default value. +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. +GENERATE_XML = NO + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. +MACRO_EXPANSION = YES + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_PREDEFINED tags. +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. +PREDEFINED = @DOXYGEN_DOC_PREDEFINED@ + + +# If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line and do not end with a semicolon. Such function macros are typically +# used for boiler-plate code, and will confuse the parser if not removed. +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tagfiles. +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or +# super classes. Setting the tag to NO turns the diagrams off. Note that this +# option is superceded by the HAVE_DOT option below. This is only a fallback. It is +# recommended to install and use dot, since it yield more powerful graphs. +CLASS_DIAGRAMS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) +HAVE_DOT = @DOXYGEN_HAVE_DOT@ + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. +COLLABORATION_GRAPH = YES + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. +TEMPLATE_RELATIONS = YES + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. +HIDE_UNDOC_RELATIONS = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. +INCLUDED_BY_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. +GRAPHICAL_HIERARCHY = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are gif, jpg, and png +# If left blank gif will be used. +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found on the path. +DOT_PATH = "@DOXYGEN_DOT_PATH@" + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. +MAX_DOT_GRAPH_HEIGHT = 1024 + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermedate dot files that are used to generate +# the various graphs. +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. +SEARCHENGINE = NO diff --git a/packages/std/src/CMakeLists.txt b/packages/std/src/CMakeLists.txt new file mode 100644 index 0000000..0230807 --- /dev/null +++ b/packages/std/src/CMakeLists.txt @@ -0,0 +1,5 @@ +#--------------------------------------------------------------------------- +# Include src configuration cmake script +INCLUDE(${BBTK_DIR}/BBTKConfigurePackage_src.cmake) +#--------------------------------------------------------------------------- + diff --git a/packages/void-bbtk-package.tgz b/packages/void-bbtk-package.tgz new file mode 100644 index 0000000000000000000000000000000000000000..1b749ace2766674dcefc2327df8845dcc571adf6 GIT binary patch literal 11742 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 A{{R30 literal 0 HcmV?d00001 -- 2.45.2