Skip to content

Commit 13e68c3

Browse files
authored
Merge branch 'develop' into ffmpeg-targets
2 parents 798dcaf + 3f5370a commit 13e68c3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+479
-547
lines changed

CMakeLists.txt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,18 @@ ENDIF(WIN32)
9292
set(QT_HEADER_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include/Qt)
9393
FILE(GLOB QT_HEADER_FILES "${QT_HEADER_DIR}/*.h")
9494

95-
############## PROCESS SUB-DIRECTORIES ##############
95+
############## PROCESS src/ DIRECTORIES ##############
9696
add_subdirectory(src)
97-
add_subdirectory(tests)
9897

9998
################### DOCUMENTATION ###################
10099
# Find Doxygen (used for documentation)
101100
include(cmake/Modules/UseDoxygen.cmake)
102101

102+
# Doxygen was found
103+
if (TARGET doc)
104+
message(STATUS "Doxygen found, documentation target enabled")
105+
message("\nTo compile documentation in doc/html, run: 'make doc'")
106+
103107
# Install docs, if the user builds them with `make doc`
104108
install(CODE "MESSAGE(\"Checking for documentation files to install...\")")
105109
install(CODE "MESSAGE(\"(Compile with 'make doc' command, requires Doxygen)\")")
@@ -108,3 +112,8 @@ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doc/html/
108112
DESTINATION ${CMAKE_INSTALL_DOCDIR}/API
109113
MESSAGE_NEVER # Don't spew about file copies
110114
OPTIONAL ) # No error if the docs aren't found
115+
endif()
116+
117+
############# PROCESS tests/ DIRECTORY ##############
118+
add_subdirectory(tests)
119+

cmake/Modules/FindPythonLibs.cmake

Lines changed: 0 additions & 294 deletions
This file was deleted.

0 commit comments

Comments
 (0)