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
e0cc024d
Commit
e0cc024d
authored
13 years ago
by
Stephen Kelly
Browse files
Options
Downloads
Patches
Plain Diff
Add missing NO_EXPORT macro variant.
parent
1b031d1a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Modules/GenerateExportHeader.cmake
+11
-2
11 additions, 2 deletions
Modules/GenerateExportHeader.cmake
Modules/exportheader.cmake.in
+6
-1
6 additions, 1 deletion
Modules/exportheader.cmake.in
with
17 additions
and
3 deletions
Modules/GenerateExportHeader.cmake
+
11
−
2
View file @
e0cc024d
...
...
@@ -221,8 +221,8 @@ endmacro()
macro
(
_DO_GENERATE_EXPORT_HEADER TARGET_LIBRARY
)
# Option overrides
set
(
options
)
set
(
oneValueArgs PREFIX_NAME BASE_NAME EXPORT_MACRO_NAME EXPORT_FILE_NAME DEPRECATED_MACRO_NAME NO_EXPORT_MACRO_NAME STATIC_DEFINE
)
set
(
options
DEFINE_NO_DEPRECATED
)
set
(
oneValueArgs PREFIX_NAME BASE_NAME EXPORT_MACRO_NAME EXPORT_FILE_NAME DEPRECATED_MACRO_NAME NO_EXPORT_MACRO_NAME STATIC_DEFINE
NO_DEPRECATED_MACRO_NAME
)
set
(
multiValueArgs
)
cmake_parse_arguments
(
_GEH
"
${
options
}
"
"
${
oneValueArgs
}
"
"
${
multiValueArgs
}
"
${
ARGN
}
)
...
...
@@ -242,6 +242,7 @@ macro(_DO_GENERATE_EXPORT_HEADER TARGET_LIBRARY)
set
(
EXPORT_FILE_NAME
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
BASE_NAME_LOWER
}
_export.h"
)
set
(
DEPRECATED_MACRO_NAME
"
${
PREFIX
}${
BASE_NAME_UPPER
}
_DEPRECATED"
)
set
(
STATIC_DEFINE
"
${
PREFIX
}${
BASE_NAME_UPPER
}
_STATIC_DEFINE"
)
set
(
NO_DEPRECATED_MACRO_NAME
"
${
BASE_NAME_UPPER
}
_NO_DEPRECATED"
)
if
(
_GEH_UNPARSED_ARGUMENTS
)
message
(
FATAL_ERROR
"Unknown keywords given to GENERATE_EXPORT_HEADER():
\"
${
_GEH_UNPARSED_ARGUMENTS
}
\"
"
)
...
...
@@ -267,6 +268,14 @@ macro(_DO_GENERATE_EXPORT_HEADER TARGET_LIBRARY)
set
(
STATIC_DEFINE
${
PREFIX
}${
_GEH_STATIC_DEFINE
}
)
endif
()
if
(
_GEH_DEFINE_NO_DEPRECATED
)
set
(
DEFINE_NO_DEPRECATED TRUE
)
endif
()
if
(
_GEH_NO_DEPRECATED_MACRO_NAME
)
set
(
NO_DEPRECATED_MACRO_NAME
${
PREFIX
}${
_GEH_NO_DEPRECATED_MACRO_NAME
}
)
endif
()
set
(
INCLUDE_GUARD_NAME
"
${
PREFIX
}${
EXPORT_MACRO_NAME
}
_H"
)
get_target_property
(
EXPORT_IMPORT_CONDITION
${
TARGET_LIBRARY
}
DEFINE_SYMBOL
)
...
...
This diff is collapsed.
Click to expand it.
Modules/exportheader.cmake.in
+
6
−
1
View file @
e0cc024d
...
...
@@ -27,4 +27,9 @@
# define @DEPRECATED_MACRO_NAME@_NO_EXPORT @NO_EXPORT_MACRO_NAME@ @DEFINE_DEPRECATED@
#endif
#endif // @INCLUDE_GUARD_NAME@
\ No newline at end of file
#cmakedefine01 DEFINE_NO_DEPRECATED
#if DEFINE_NO_DEPRECATED
# define @NO_DEPRECATED_MACRO_NAME@
#endif
#endif // @INCLUDE_GUARD_NAME@
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