Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
iRMB
VirtualFluids
Merge requests
!34
Add new library, which contains the calculation of the macroscopic quantities and a general cumulant computation. (Closes
#13
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add new library, which contains the calculation of the macroscopic quantities and a general cumulant computation. (Closes
#13
)
soe.peters/VirtualFluids:feature/united_code
into
develop
Overview
0
Commits
76
Pipelines
0
Changes
1
Merged
Sören Peters
requested to merge
soe.peters/VirtualFluids:feature/united_code
into
develop
4 years ago
Overview
0
Commits
76
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
ad40a7a8
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ad40a7a8
Check for LTO only for CXX.
· ad40a7a8
peters
authored
4 years ago
CMake/VirtualFluidsMacros.cmake
+
1
−
1
Options
@@ -155,7 +155,7 @@ function(vf_add_library)
# link time optimization
if
(
NOT
${
ARG_BUILDTYPE
}
MATCHES binary
)
include
(
CheckIPOSupported
)
check_ipo_supported
(
RESULT ipo_supported OUTPUT ipo_error
)
check_ipo_supported
(
RESULT ipo_supported OUTPUT ipo_error
LANGUAGES CXX
)
if
(
ipo_supported
)
status_lib
(
"IPO / LTO enabled"
)
Loading