Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
yrHeTaTeJlb
CMake
Commits
44430379
Commit
44430379
authored
13 years ago
by
Stephen Kelly
Browse files
Options
Downloads
Patches
Plain Diff
Fix tests with clang.
parent
ffaa127b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Tests/Module/GenerateExportHeader/CMakeLists.txt
+5
-4
5 additions, 4 deletions
Tests/Module/GenerateExportHeader/CMakeLists.txt
with
5 additions
and
4 deletions
Tests/Module/GenerateExportHeader/CMakeLists.txt
+
5
−
4
View file @
44430379
...
...
@@ -44,7 +44,7 @@ macro(_do_build Include Library LibrarySource Source)
"add_compiler_export_flags()
\n
"
"if(CMAKE_COMPILER_IS_GNUCXX)
\n
"
"if(CMAKE_COMPILER_IS_GNUCXX
OR OR (
${
CMAKE_CXX_COMPILER_ID
}
MATCHES Clang)
)
\n
"
" add_definitions(-Werror)
\n
"
"else()
\n
"
" if(MSVC)
\n
"
...
...
@@ -76,10 +76,11 @@ endmacro()
macro
(
build_fail Include Library LibrarySource Source Message
)
_do_build
(
${
Include
}
${
Library
}
${
LibrarySource
}
"
${
Source
}
"
)
if
((
USE_COMPILER_HIDDEN_VISIBILITY AND COMPILER_HAS_HIDDEN_VISIBILITY
)
OR WIN32
)
if
((
USE_COMPILER_HIDDEN_VISIBILITY AND COMPILER_HAS_HIDDEN_VISIBILITY
)
OR WIN32
OR
(
${
CMAKE_CXX_COMPILER_ID
}
MATCHES Clang
)
)
test_fail
(
Result
${
Message
}
)
e
ndif
()
e
lse
()
test_pass
(
Result
${
Message
}
)
endif
()
endmacro
()
macro
(
build_pass Include Library LibrarySource Source Message
)
...
...
@@ -112,7 +113,7 @@ add_subdirectory(lib_shared_and_statictest)
add_subdirectory
(
override_symbol
)
if
(
CMAKE_COMPILER_IS_GNUCXX
)
if
(
CMAKE_COMPILER_IS_GNUCXX
OR
(
${
CMAKE_CXX_COMPILER_ID
}
MATCHES Clang
)
)
# We deliberately call deprecated methods, and test for that elsewhere.
# No need to clutter the test output with warnings.
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Wno-deprecated-declarations"
)
...
...
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