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
!368
Adds copyright headers and compiler information via buildInfo.h
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adds copyright headers and compiler information via buildInfo.h
soe.peters/VirtualFluids:feature/header-fixes
into
develop
Overview
0
Commits
5
Pipelines
0
Changes
25
Merged
Sören Peters
requested to merge
soe.peters/VirtualFluids:feature/header-fixes
into
develop
1 year ago
Overview
0
Commits
5
Pipelines
0
Changes
25
Expand
0
0
Merge request reports
Compare
develop
version 2
ccd4e676
1 year ago
version 1
e1907c48
1 year ago
develop (base)
and
latest version
latest version
2825e299
5 commits,
1 year ago
version 2
ccd4e676
4 commits,
1 year ago
version 1
e1907c48
3 commits,
1 year ago
25 files
+
660
−
104
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
Search (e.g. *.vue) (Ctrl+P)
CMake/3rd/boost.cmake deleted
100644 → 0
+
0
−
39
Options
function
(
linkBoost
)
set
(
options
)
set
(
oneValueArgs
)
set
(
multiValueArgs COMPONENTS
)
cmake_parse_arguments
(
ARG
"
${
options
}
"
"
${
oneValueArgs
}
"
"
${
multiValueArgs
}
"
${
ARGN
}
)
if
(
BUILD_SHARED_LIBS
)
if
(
WIN32
)
set
(
Boost_USE_STATIC_LIBS ON
)
else
()
set
(
Boost_USE_STATIC_LIBS OFF
)
endif
()
set
(
Boost_USE_STATIC_RUNTIME OFF
)
else
()
set
(
Boost_USE_STATIC_LIBS ON
)
if
(
WIN32
)
set
(
Boost_USE_STATIC_RUNTIME ON
)
endif
()
endif
()
set
(
Boost_USE_MULTITHREADED ON
)
if
(
WIN32
)
add_definitions
(
-DBOOST_ALL_NO_LIB
)
# add_definitions( -DBOOST_ALL_DYN_LINK )
endif
()
vf_get_library_name
(
library_name
)
if
(
DEFINED ARG_COMPONENTS
)
find_package
(
Boost REQUIRED COMPONENTS
${
ARG_COMPONENTS
}
)
target_link_libraries
(
${
library_name
}
PRIVATE
${
Boost_LIBRARIES
}
)
else
()
find_package
(
Boost REQUIRED
)
endif
()
target_include_directories
(
${
library_name
}
PRIVATE
${
Boost_INCLUDE_DIR
}
)
endfunction
()
Loading