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
5ca8c565
Commit
5ca8c565
authored
13 years ago
by
Stephen Kelly
Browse files
Options
Downloads
Patches
Plain Diff
Fix up verbatim code sections of the dox.
parent
75596e62
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
Modules/GenerateExportHeader.cmake
+1
-17
1 addition, 17 deletions
Modules/GenerateExportHeader.cmake
with
1 addition
and
17 deletions
Modules/GenerateExportHeader.cmake
+
1
−
17
View file @
5ca8c565
...
...
@@ -28,13 +28,9 @@
# This means that in the simplest case, users of these functions will be equivalent to:
#
# add_compiler_export_flags()
#
# add_library(somelib someclass.cpp)
#
# generate_export_header(somelib)
#
# install(TARGETS somelib DESTINATION ${LIBRARY_INSTALL_DIR})
#
# install(FILES
# someclass.h
# ${PROJECT_BINARY_DIR}/somelib_export.h DESTINATION ${INCLUDE_INSTALL_DIR}
...
...
@@ -42,13 +38,10 @@
#
# And in the ABI header files:
#
# \code
# #include "somelib_export.h"
#
# class SOMELIB_EXPORT SomeClass {
#
#
...
# };
# \endcode
#
# The CMake fragment will generate a file in the ${CMAKE_CURRENT_BUILD_DIR} called
# somelib_export.h containing the macros SOMELIB_EXPORT, SOMELIB_NO_EXPORT,
...
...
@@ -92,9 +85,7 @@
#
# add_library(shared_variant SHARED ${lib_SRCS})
# add_library(static_variant ${lib_SRCS})
#
# generate_export_header(shared_variant BASE_NAME libshared_and_static)
#
# set_target_properties(static_variant PROPERTIES COMPILE_FLAGS -DLIBSHARED_AND_STATIC_STATIC_DEFINE)
#
# This will cause the export macros to expand to nothing when building the static library.
...
...
@@ -103,16 +94,13 @@
# This macro can be used to remove deprecated code from preprocessor output.
#
# option(EXCLUDE_DEPRECATED "Exclude deprecated parts of the library" FALSE)
#
# if (EXCLUDE_DEPRECATED)
# set(NO_BUILD_DEPRECATED DEFINE_NO_DEPRECATED)
# endif()
#
# generate_export_header(somelib ${NO_BUILD_DEPRECATED})
#
# And then in somelib:
#
# \code
# class SOMELIB_EXPORT SomeClass
# {
# public:
...
...
@@ -121,14 +109,10 @@
# #endif
# };
#
# // ...
#
# #ifndef SOMELIB_NO_DEPRECATED
# void SomeClass::oldMethod() { }
# #endif
#
# \endcode
#
# If PREFIX_NAME is specified, the argument will be used as a prefix to all
# generated macros.
#
...
...
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