forked from mirrors/linphone-iphone
43 lines
1.8 KiB
CMake
43 lines
1.8 KiB
CMake
############################################################################
|
|
# CMakeLists.txt
|
|
# Copyright (C) 2017 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
############################################################################
|
|
|
|
add_subdirectory(doxygen)
|
|
add_subdirectory(sphinx)
|
|
|
|
if(ENABLE_JAVADOC)
|
|
find_package(Java REQUIRED)
|
|
set(JAVADOC_PACKAGES "org.linphone.core org.linphone.mediastream")
|
|
set(JAVADOC_CLASSPATHS
|
|
"${PROJECT_SOURCE_DIR}/java/common"
|
|
"${PROJECT_SOURCE_DIR}/java/j2se"
|
|
"${PROJECT_SOURCE_DIR}/mediastreamer2/java/src"
|
|
)
|
|
string(REPLACE ";" ":" JAVADOC_CLASSPATHS "${JAVADOC_CLASSPATHS}")
|
|
set(JAVADOC_TITLE "Linphone SDK ${PROJECT_VERSION} reference documentation")
|
|
set(JAVADOC_JAVA_REFERENCE "http://docs.oracle.com/javase/8/docs/api/")
|
|
set(JAVADOC_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc/java")
|
|
set(JAVADOC_LOGFILE "${CMAKE_CURRENT_BINARY_DIR}/javadoc.log")
|
|
configure_file("generate_javadoc.sh.in" "generate_javadoc.sh" @ONLY)
|
|
add_custom_target(javadoc ALL
|
|
COMMAND "${CMAKE_CURRENT_BINARY_DIR}/generate_javadoc.sh"
|
|
)
|
|
endif()
|