Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
a2a276b2
Commit
a2a276b2
authored
Dec 01, 2009
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
in RESTRICT_SYMBOL_EXPORTS,handle cases where COMPILE_FLAGS are not set
(COMPILE_FLAGS-NOTFOUND)
parent
b5f2b3bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
cmake/libutils.cmake
cmake/libutils.cmake
+4
-0
No files found.
cmake/libutils.cmake
View file @
a2a276b2
...
...
@@ -260,6 +260,10 @@ ENDMACRO()
MACRO
(
RESTRICT_SYMBOL_EXPORTS target
)
IF
(
CMAKE_COMPILER_IS_GNUCXX AND UNIX
)
GET_TARGET_PROPERTY
(
COMPILE_FLAGS
${
target
}
COMPILE_FLAGS
)
IF
(
NOT COMPILE_FLAGS
)
# Avoid COMPILE_FLAGS-NOTFOUND
SET
(
COMPILE_FLAGS
)
ENDIF
()
SET_TARGET_PROPERTIES
(
${
target
}
PROPERTIES
COMPILE_FLAGS
"
${
COMPILE_FLAGS
}
-fvisibility=hidden"
)
ENDIF
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment