IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
corsika
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pranav Sampathkumar
corsika
Commits
73a301df
Commit
73a301df
authored
4 years ago
by
ralfulrich
Browse files
Options
Downloads
Patches
Plain Diff
basic doc setup
parent
8af85bbf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-0
1 addition, 0 deletions
CMakeLists.txt
documentation/CMakeLists.txt
+33
-0
33 additions, 0 deletions
documentation/CMakeLists.txt
documentation/Doxyfile.in
+4
-4
4 additions, 4 deletions
documentation/Doxyfile.in
modules/conex
+1
-1
1 addition, 1 deletion
modules/conex
with
39 additions
and
5 deletions
CMakeLists.txt
+
1
−
0
View file @
73a301df
...
@@ -221,6 +221,7 @@ target_link_libraries (
...
@@ -221,6 +221,7 @@ target_link_libraries (
)
)
# those are needed, since some headers (namely GeneratedParticleProperties.inc) are produced by python script from ParticleData.xml
# those are needed, since some headers (namely GeneratedParticleProperties.inc) are produced by python script from ParticleData.xml
add_subdirectory
(
src
)
add_subdirectory
(
src
)
add_subdirectory
(
documentation
)
#
#
#
#
#+++++++++++++++++++++++++++++
#+++++++++++++++++++++++++++++
...
...
This diff is collapsed.
Click to expand it.
documentation/CMakeLists.txt
0 → 100644
+
33
−
0
View file @
73a301df
find_package
(
Doxygen OPTIONAL_COMPONENTS dot mscgen dia
)
if
(
DOXYGEN_FOUND
)
if
(
NOT DOXYGEN_DOT_EXECUTABLE
)
message
(
FATAL_ERROR
"Found doxygen but not 'dot' command, please install graphviz or set DOXYGEN_DOT_EXECUTABLE"
)
endif
()
set
(
DOXYGEN_IN
${
CMAKE_CURRENT_SOURCE_DIR
}
/Doxyfile.in
)
set
(
DOXYGEN_OUT
${
CMAKE_CURRENT_BINARY_DIR
}
/Doxyfile
)
set
(
DOXYGEN_GENERATE_HTML YES
)
set
(
DOXYGEN_GENERATE_MAN YES
)
configure_file
(
${
DOXYGEN_IN
}
${
DOXYGEN_OUT
}
@ONLY
)
message
(
"Start doxygen with
\"
make doxygen
\"
"
)
# note the option ALL which allows to build the docs together with the application
add_custom_target
(
doxygen
# ALL
COMMAND
${
DOXYGEN_EXECUTABLE
}
${
DOXYGEN_OUT
}
WORKING_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
COMMENT
"Generating API documentation with Doxygen"
VERBATIM
)
add_custom_command
(
TARGET doxygen POST_BUILD
COMMAND cd
${
CMAKE_CURRENT_BINARY_DIR
}
/latex; pdflatex refman.tex
)
install
(
DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
/html DESTINATION share/doc OPTIONAL
)
install
(
FILES
${
CMAKE_CURRENT_BINARY_DIR
}
/latex/refman.pdf DESTINATION share/doc OPTIONAL
)
else
(
DOXYGEN_FOUND
)
message
(
"Doxygen need to be installed to generate the doxygen documentation"
)
endif
(
DOXYGEN_FOUND
)
This diff is collapsed.
Click to expand it.
documentation/Doxyfile.in
+
4
−
4
View file @
73a301df
e
PROJECT_NAME = CORSIKA 8
PROJECT_NAME = CORSIKA 8
PROJECT_NUMBER = 0.0.0
PROJECT_NUMBER = 0.0.0
GENERATE_HTML = YES
GENERATE_HTML = YES
...
@@ -6,12 +6,12 @@ GENERATE_LATEX = YES
...
@@ -6,12 +6,12 @@ GENERATE_LATEX = YES
GENERATE_XML = YES
GENERATE_XML = YES
OUTPUT_DIRECTORY = @CMAKE_CURRENT_BINARY_DIR@/
OUTPUT_DIRECTORY = @CMAKE_CURRENT_BINARY_DIR@/
INPUT = @PROJECT_SOURCE_DIR@ @PROJECT_
BINARY_DIR@/Framework
INPUT = @PROJECT_SOURCE_DIR@
/corsika
@PROJECT_
SOURCE_DIR@/src
EXCLUDE_PATTERNS = *
/ThirdParty/*/* */build*/corsika/*
EXCLUDE_PATTERNS = *
.inl
FULL_PATH_NAMES = YES
FULL_PATH_NAMES = YES
STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@
STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@
FILE_PATTERNS = *.c
c *.cpp *.cxx *.h
*.hpp *.dox
*.inc
*.md
FILE_PATTERNS = *.c
pp
*.hpp *.dox *.md
EXTENSION_MAPPING = inc=C++
EXTENSION_MAPPING = inc=C++
RECURSIVE = YES
RECURSIVE = YES
...
...
This diff is collapsed.
Click to expand it.
conex
@
c17fc68b
Compare
c228d89b
...
c17fc68b
Subproject commit c
228d89b485ed0fa0822c64d5f12e53e32d2915d
Subproject commit c
17fc68bd35612e1b610ce2b43e84e91577b8a86
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment