Skip to content

Commit 0c5e2f4

Browse files
PatKaminbratpiorka
authored andcommitted
Move 3rd party programs license to a subdir
1 parent ca3645c commit 0c5e2f4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,9 @@ endif()
600600
# Configure make install/uninstall and packages
601601
# --------------------------------------------------------------------------- #
602602
install(FILES ${CMAKE_SOURCE_DIR}/LICENSE.TXT
603-
${CMAKE_SOURCE_DIR}/third-party-programs.txt
604603
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/doc/${PROJECT_NAME}/")
604+
install(FILES ${CMAKE_SOURCE_DIR}/licensing/third-party-programs.txt
605+
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/doc/${PROJECT_NAME}/licensing/")
605606

606607
install(DIRECTORY examples DESTINATION "${CMAKE_INSTALL_DOCDIR}")
607608

File renamed without changes.

test/test_installation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def _create_match_list(self) -> List[str]:
146146
examples.insert(0, "share/doc/umf/examples")
147147
share.extend(examples)
148148
share.append("share/doc/umf/LICENSE.TXT")
149-
share.append("share/doc/umf/third-party-programs.txt")
149+
share.append("share/doc/umf/licensing/third-party-programs.txt")
150150

151151
all_files = bin + include + lib + share
152152
if platform.system() == "Windows":

0 commit comments

Comments
 (0)