diff options
author | VVD <vvd@unislabs.com> | 2022-12-25 16:38:21 +0000 |
---|---|---|
committer | Nuno Teixeira <eduardo@FreeBSD.org> | 2022-12-26 05:25:48 +0000 |
commit | 6622ce688cfd04db96ab934b7808f6774c6cec97 (patch) | |
tree | 8772d8ce42bf3e0dd266e8e6c61d5bb46c1edb6e /multimedia/libopenshot/files/patch-CMakeLists.txt | |
parent | audio/libopenshot-audio: Update to 0.3.0 (diff) |
multimedia/libopenshot: Update to 0.3.0
ChangeLog: https://github.com/OpenShot/libopenshot/releases/tag/v0.3.0
PR: 268317
Diffstat (limited to 'multimedia/libopenshot/files/patch-CMakeLists.txt')
-rw-r--r-- | multimedia/libopenshot/files/patch-CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/multimedia/libopenshot/files/patch-CMakeLists.txt b/multimedia/libopenshot/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..fbb39ea66cf8 --- /dev/null +++ b/multimedia/libopenshot/files/patch-CMakeLists.txt @@ -0,0 +1,29 @@ +--- CMakeLists.txt.orig 2022-12-01 22:04:03 UTC ++++ CMakeLists.txt +@@ -135,7 +135,7 @@ endif() + ### Process subdirectories + ### + add_subdirectory(src) +-add_subdirectory(examples) ++#add_subdirectory(examples) + add_subdirectory(bindings) + + ### +@@ -193,6 +193,8 @@ if (ENABLE_LIB_DOCS AND CMAKE_VERSION VERSION_GREATER + set(DOXYGEN_INTERACTIVE_SVG YES) + set(DOXYGEN_DOT_TRANSPARENT YES) + ++ set(DOXYGEN_DOT_GRAPH_MAX_NODES "100") ++ + doxygen_add_docs(${PROJECT_NAME}-doc + ${PROJECT_SOURCE_DIR}/src + ${PROJECT_SOURCE_DIR}/doc +@@ -213,7 +215,7 @@ if (TARGET ${PROJECT_NAME}-doc) + OPTIONAL ) # No error if the docs aren't found + + if(NOT TARGET doc) +- add_custom_target(doc) ++ add_custom_target(doc ALL) + endif() + if(TARGET doc) + add_dependencies(doc ${PROJECT_NAME}-doc) |