IAP GITLAB

Skip to content
Snippets Groups Projects
Commit cb4fbe92 authored by ralfulrich's avatar ralfulrich
Browse files

fixed line breaks in cmakelists.txt

parent de0d1308
No related branches found
No related tags found
No related merge requests found
......@@ -209,9 +209,9 @@ function (CORSIKA_ADD_EXAMPLE)
COMMAND ${CMAKE_COMMAND} -E echo ""
COMMAND ${CMAKE_COMMAND} -E echo "**************************************"
COMMAND ${CMAKE_COMMAND} -E echo "***** running example: ${name} " ${run_options} VERBATIM
COMMAND gdb -ex "run ${run_options}" -ex bt -ex "info locals" -ex "up" -ex "info locals" \
-ex "up"-ex "info locals" -ex "up" -ex "info locals" \
-ex quit ${CMAKE_CURRENT_BINARY_DIR}/${name} \
COMMAND gdb -ex "run ${run_options}" -ex bt -ex "info locals" -ex "up" -ex "info locals"
-ex "up"-ex "info locals" -ex "up" -ex "info locals"
-ex quit ${CMAKE_CURRENT_BINARY_DIR}/${name}
VERBATIM
gdb -ex 'run arg1 arg2' -ex bt -ex quit ./program
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/example_outputs)
......
......@@ -7,11 +7,11 @@ GENERATE_XML = YES
OUTPUT_DIRECTORY = @CMAKE_CURRENT_BINARY_DIR@/
INPUT = @PROJECT_SOURCE_DIR@ @PROJECT_BINARY_DIR@/Framework
EXCLUDE_PATTERNS = */ThirdParty/*/*
EXCLUDE_PATTERNS = */ThirdParty/*/* */build*/*
FULL_PATH_NAMES = YES
STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@
FILE_PATTERNS = *.cc *.cpp *.cxx *.h *.dox *.inc *.md
FILE_PATTERNS = *.cc *.cpp *.cxx *.h *.hpp *.dox *.inc *.md
EXTENSION_MAPPING = inc=C++
RECURSIVE = YES
......
......@@ -54,7 +54,6 @@ namespace corsika::particles {
int constexpr GetNucleusA(Code const);
int constexpr GetNucleusZ(Code const);
#include <corsika/particles/GeneratedParticleProperties.inc>
/*!
* returns mass of particle in natural units
......@@ -153,3 +152,5 @@ namespace corsika::particles {
}
} // namespace corsika::particles
#include <corsika/particles/GeneratedParticleProperties.inc>
......@@ -447,7 +447,8 @@ def gen_classes(particle_db):
#
def inc_start():
string = ('// generated by pdxml_reader.py\n'
'// MANUAL EDITS ON OWN RISK. THEY WILL BE OVERWRITTEN. \n')
'// MANUAL EDITS ON OWN RISK. THEY WILL BE OVERWRITTEN. \n'
'namespace corsika::particles {\n')
return string
......@@ -463,14 +464,14 @@ def detail_start():
#
#
def detail_end():
string = "\n}//end namespace detail\n"
string = "\n} // end namespace detail\n"
return string
###############################################################
#
#
def inc_end():
string = ""
string = "\n} // end namespace corsika::particles\n"
return string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment