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
Snippets
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
Antonio Augusto Alves Junior
corsika
Commits
d99cb5bf
Commit
d99cb5bf
authored
5 years ago
by
ralfulrich
Browse files
Options
Downloads
Patches
Plain Diff
path
parent
975ec234
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Framework/Utilities/CMakeLists.txt
+1
-1
1 addition, 1 deletion
Framework/Utilities/CMakeLists.txt
ThirdParty/CMakeLists.txt
+11
-1
11 additions, 1 deletion
ThirdParty/CMakeLists.txt
Tools/coverage.sh
+2
-2
2 additions, 2 deletions
Tools/coverage.sh
with
14 additions
and
4 deletions
Framework/Utilities/CMakeLists.txt
+
1
−
1
View file @
d99cb5bf
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
try_compile
(
HAS_FEENABLEEXCEPT
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/try_feenableexcept.cc"
)
try_compile
(
HAS_FEENABLEEXCEPT
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/try_feenableexcept.cc"
)
if
(
HAS_FEENABLEEXCEPT
)
if
(
HAS_FEENABLEEXCEPT
)
set
(
CORSIKA_FENV
"CorsikaFenvDefault.cc"
)
set
(
CORSIKA_FENV
"CorsikaFenvDefault.cc"
)
set_property
(
DIRECTORY
${
CMAKE_
HOME_DIRECTORY
}
APPEND PROPERTY COMPILE_DEFINITIONS
"HAS_FEENABLEEXCEPT"
)
set_property
(
DIRECTORY
${
CMAKE_
SOURCE_DIR
}
APPEND PROPERTY COMPILE_DEFINITIONS
"HAS_FEENABLEEXCEPT"
)
else
()
else
()
if
(
APPLE
)
if
(
APPLE
)
set
(
CORSIKA_FENV
"CorsikaFenvOSX.cc"
)
set
(
CORSIKA_FENV
"CorsikaFenvOSX.cc"
)
...
...
This diff is collapsed.
Click to expand it.
ThirdParty/CMakeLists.txt
+
11
−
1
View file @
d99cb5bf
...
@@ -9,4 +9,14 @@ target_include_directories (CORSIKAthirdparty SYSTEM
...
@@ -9,4 +9,14 @@ target_include_directories (CORSIKAthirdparty SYSTEM
install
(
DIRECTORY phys DESTINATION include/ThirdParty/
)
install
(
DIRECTORY phys DESTINATION include/ThirdParty/
)
install
(
DIRECTORY catch2 DESTINATION include/ThirdParty/
)
install
(
DIRECTORY catch2 DESTINATION include/ThirdParty/
)
install
(
DIRECTORY boost DESTINATION include/ThirdParty/boost/
)
install
(
DIRECTORY boost DESTINATION include/ThirdParty/boost/
)
\ No newline at end of file
install
(
DIRECTORY lcov/bin
DESTINATION share/tools/lcov/
USE_SOURCE_PERMISSIONS
PATTERN
"example"
EXCLUDE
PATTERN
"man"
EXCLUDE
PATTERN
"test"
EXCLUDE
PATTERN
"rpm"
EXCLUDE
)
This diff is collapsed.
Click to expand it.
Tools/coverage.sh
+
2
−
2
View file @
d99cb5bf
...
@@ -4,8 +4,8 @@ if [ -z $GCOV ]; then
...
@@ -4,8 +4,8 @@ if [ -z $GCOV ]; then
GCOV
=
gcov
GCOV
=
gcov
fi
fi
PROJECT_DIR
=
"
$(
dirname
$0
)
/
../
"
PROJECT_DIR
=
"
$(
dirname
$0
)
/"
LCOV_DIR
=
"
${
PROJECT_DIR
}
/
ThirdParty/
lcov"
LCOV_DIR
=
"
${
PROJECT_DIR
}
/lcov
/
"
# LCOV="$LCOV_EXE --gcov-tool=${GCOV} --rc lcov_branch_coverage=1"
# LCOV="$LCOV_EXE --gcov-tool=${GCOV} --rc lcov_branch_coverage=1"
LCOV
=
"
${
LCOV_DIR
}
/bin/lcov --gcov-tool=
${
GCOV
}
"
# no branch coverage
LCOV
=
"
${
LCOV_DIR
}
/bin/lcov --gcov-tool=
${
GCOV
}
"
# no branch coverage
...
...
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