Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Özgür Ozan Sen
ogs
Commits
52e73d30
Commit
52e73d30
authored
2 years ago
by
Lars Bilke
Committed by
Dmitri Naumov
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[cmake] Use list syntax of CXX_COMPILER_ID generator expression.
parent
cd08a0a6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
MaterialLib/SolidModels/MFront/CMakeLists.txt
+2
-4
2 additions, 4 deletions
MaterialLib/SolidModels/MFront/CMakeLists.txt
scripts/cmake/Dependencies.cmake
+2
-4
2 additions, 4 deletions
scripts/cmake/Dependencies.cmake
scripts/cmake/Functions.cmake
+7
-27
7 additions, 27 deletions
scripts/cmake/Functions.cmake
with
11 additions
and
35 deletions
MaterialLib/SolidModels/MFront/CMakeLists.txt
+
2
−
4
View file @
52e73d30
...
@@ -31,10 +31,8 @@ target_link_libraries(
...
@@ -31,10 +31,8 @@ target_link_libraries(
# Disable warnings for generated OgsMFrontBehaviour
# Disable warnings for generated OgsMFrontBehaviour
target_compile_options
(
target_compile_options
(
OgsMFrontBehaviour
OgsMFrontBehaviour PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-w>
PRIVATE
$<$<CXX_COMPILER_ID:MSVC>:/W0>
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:-w>
$<$<CXX_COMPILER_ID:MSVC>:/W0>
)
)
target_include_directories
(
target_include_directories
(
...
...
This diff is collapsed.
Click to expand it.
scripts/cmake/Dependencies.cmake
+
2
−
4
View file @
52e73d30
...
@@ -456,10 +456,8 @@ if(WIN32 AND VTK_ADDED)
...
@@ -456,10 +456,8 @@ if(WIN32 AND VTK_ADDED)
endif
()
endif
()
foreach
(
target
${
DISABLE_WARNINGS_TARGETS
}
)
foreach
(
target
${
DISABLE_WARNINGS_TARGETS
}
)
target_compile_options
(
target_compile_options
(
${
target
}
${
target
}
PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-w>
PRIVATE
$<$<CXX_COMPILER_ID:MSVC>:/W0>
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:-w>
$<$<CXX_COMPILER_ID:MSVC>:/W0>
)
)
endforeach
()
endforeach
()
...
...
This diff is collapsed.
Click to expand it.
scripts/cmake/Functions.cmake
+
7
−
27
View file @
52e73d30
...
@@ -96,19 +96,8 @@ function(ogs_add_library targetName)
...
@@ -96,19 +96,8 @@ function(ogs_add_library targetName)
add_library
(
${
targetName
}
${
type
}
${
files
}
)
add_library
(
${
targetName
}
${
type
}
${
files
}
)
target_compile_options
(
target_compile_options
(
${
targetName
}
${
targetName
}
PRIVATE
# OR does not work with cotire
PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-Wall -Wextra
# $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,
-Wunreachable-code> $<$<CXX_COMPILER_ID:MSVC>:/W3>
# $<CXX_COMPILER_ID:GNU>>:-Wall -Wextra>
$<$<CXX_COMPILER_ID:Clang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:AppleClang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:GNU>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:MSVC>:/W3>
)
)
if
(
BUILD_SHARED_LIBS
)
if
(
BUILD_SHARED_LIBS
)
...
@@ -120,7 +109,9 @@ function(ogs_add_library targetName)
...
@@ -120,7 +109,9 @@ function(ogs_add_library targetName)
if
(
ogs_add_library_GENERATE_EXPORT_HEADER
)
if
(
ogs_add_library_GENERATE_EXPORT_HEADER
)
include
(
GenerateExportHeader
)
include
(
GenerateExportHeader
)
generate_export_header
(
${
targetName
}
)
generate_export_header
(
${
targetName
}
)
target_include_directories
(
${
targetName
}
PUBLIC
${
CMAKE_CURRENT_BINARY_DIR
}
)
target_include_directories
(
${
targetName
}
PUBLIC
${
CMAKE_CURRENT_BINARY_DIR
}
)
endif
()
endif
()
if
(
${
CMAKE_VERSION
}
VERSION_GREATER_EQUAL 3.16
)
if
(
${
CMAKE_VERSION
}
VERSION_GREATER_EQUAL 3.16
)
...
@@ -144,19 +135,8 @@ function(ogs_add_executable targetName)
...
@@ -144,19 +135,8 @@ function(ogs_add_executable targetName)
target_compile_options
(
target_compile_options
(
${
targetName
}
${
targetName
}
PRIVATE
# OR does not work with cotire
PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-Wall -Wextra
# $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,
-Wunreachable-code> $<$<CXX_COMPILER_ID:MSVC>:/W3>
# $<CXX_COMPILER_ID:GNU>>:-Wall -Wextra>
$<$<CXX_COMPILER_ID:Clang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:AppleClang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:GNU>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:MSVC>:/W3>
)
)
endfunction
()
endfunction
()
...
...
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