Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
f72a2c69
Unverified
Commit
f72a2c69
authored
Sep 14, 2023
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename doxygen target
parent
84d9275c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
CMakeLists.txt
+2
-3
docs/CMakeLists.txt
+2
-2
No files found.
CMakeLists.txt
View file @
f72a2c69
...
@@ -394,11 +394,10 @@ install(FILES
...
@@ -394,11 +394,10 @@ install(FILES
COMPONENT Devel
COMPONENT Devel
)
)
set
(
cifpp_MAJOR_VERSION
${
CMAKE_PROJECT_VERSION_MAJOR
}
)
set_target_properties
(
cifpp PROPERTIES
set_target_properties
(
cifpp PROPERTIES
VERSION
${
PROJECT_VERSION
}
VERSION
${
PROJECT_VERSION
}
SOVERSION
"
${
cifpp_MAJOR_VERSION
}
.
${
cifpp_MINOR_VERSION
}
"
SOVERSION
"
${
PROJECT_VERSION_MAJOR
}
.
${
PROJECT_VERSION_MINOR
}
"
INTERFACE_cifpp_MAJOR_VERSION
${
cifpp_MAJOR_VERSION
}
)
INTERFACE_cifpp_MAJOR_VERSION
${
PROJECT_VERSION_MAJOR
}
)
set_property
(
TARGET cifpp APPEND PROPERTY
set_property
(
TARGET cifpp APPEND PROPERTY
COMPATIBLE_INTERFACE_STRING cifpp_MAJOR_VERSION
COMPATIBLE_INTERFACE_STRING cifpp_MAJOR_VERSION
...
...
docs/CMakeLists.txt
View file @
f72a2c69
...
@@ -26,14 +26,14 @@ add_custom_command(OUTPUT ${DOXYGEN_INDEX_FILE}
...
@@ -26,14 +26,14 @@ add_custom_command(OUTPUT ${DOXYGEN_INDEX_FILE}
MAIN_DEPENDENCY
${
DOXYFILE_OUT
}
${
DOXYFILE_IN
}
MAIN_DEPENDENCY
${
DOXYFILE_OUT
}
${
DOXYFILE_IN
}
COMMENT
"Generating docs"
)
COMMENT
"Generating docs"
)
add_custom_target
(
Doxygen
ALL DEPENDS
${
DOXYGEN_INDEX_FILE
}
)
add_custom_target
(
"Doxygen-
${
PROJECT_NAME
}
"
ALL DEPENDS
${
DOXYGEN_INDEX_FILE
}
)
configure_file
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/conf.py.in
${
CMAKE_CURRENT_SOURCE_DIR
}
/conf.py @ONLY
)
configure_file
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/conf.py.in
${
CMAKE_CURRENT_SOURCE_DIR
}
/conf.py @ONLY
)
set
(
SPHINX_SOURCE
${
CMAKE_CURRENT_SOURCE_DIR
}
)
set
(
SPHINX_SOURCE
${
CMAKE_CURRENT_SOURCE_DIR
}
)
set
(
SPHINX_BUILD
${
CMAKE_CURRENT_BINARY_DIR
}
/sphinx
)
set
(
SPHINX_BUILD
${
CMAKE_CURRENT_BINARY_DIR
}
/sphinx
)
add_custom_target
(
Sphinx
ALL
add_custom_target
(
"Sphinx-
${
PROJECT_NAME
}
"
ALL
COMMAND
${
SPHINX_EXECUTABLE
}
-b html
COMMAND
${
SPHINX_EXECUTABLE
}
-b html
-Dbreathe_projects.
${
PROJECT_NAME
}
=
${
DOXYGEN_OUTPUT_DIR
}
-Dbreathe_projects.
${
PROJECT_NAME
}
=
${
DOXYGEN_OUTPUT_DIR
}
${
SPHINX_SOURCE
}
${
SPHINX_BUILD
}
${
SPHINX_SOURCE
}
${
SPHINX_BUILD
}
...
...
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