Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
45bc8f1f
Commit
45bc8f1f
authored
Aug 06, 2014
by
Ghislain MARY
Browse files
Generate documentation when compiling with CMake.
parent
31c895b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
0 deletions
+39
-0
coreapi/CMakeLists.txt
coreapi/CMakeLists.txt
+2
-0
coreapi/help/CMakeLists.txt
coreapi/help/CMakeLists.txt
+37
-0
No files found.
coreapi/CMakeLists.txt
View file @
45bc8f1f
...
...
@@ -145,3 +145,5 @@ install(FILES ${HEADER_FILES}
DESTINATION include/linphone
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
)
add_subdirectory
(
help
)
coreapi/help/CMakeLists.txt
0 → 100644
View file @
45bc8f1f
############################################################################
# CMakeLists.txt
# Copyright (C) 2014 Belledonne Communications, Grenoble France
#
############################################################################
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
############################################################################
find_package
(
Doxygen
)
if
(
DOXYGEN_FOUND
)
if
(
DOXYGEN_DOT_FOUND
)
set
(
top_srcdir
${
CMAKE_SOURCE_DIR
}
)
configure_file
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/Doxyfile.in
${
CMAKE_CURRENT_BINARY_DIR
}
/Doxyfile
)
add_custom_target
(
doc ALL
${
DOXYGEN_EXECUTABLE
}
${
CMAKE_CURRENT_BINARY_DIR
}
/Doxyfile
DEPENDS
${
CMAKE_CURRENT_BINARY_DIR
}
/Doxyfile
)
install
(
DIRECTORY
"
${
CMAKE_CURRENT_BINARY_DIR
}
/doc/html"
"
${
CMAKE_CURRENT_BINARY_DIR
}
/doc/xml"
DESTINATION
"
${
CMAKE_INSTALL_PREFIX
}
/share/doc/linphone-
${
LINPHONE_VERSION
}
"
)
else
()
message
(
WARNING
"The dot program is needed to generate the linphone documentation. You can get it from http://www.graphviz.org/."
)
endif
()
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