Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -600,8 +600,10 @@ endif()
# Configure make install/uninstall and packages
# --------------------------------------------------------------------------- #
install(FILES ${CMAKE_SOURCE_DIR}/LICENSE.TXT
${CMAKE_SOURCE_DIR}/third-party-programs.txt
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/doc/${PROJECT_NAME}/")
install(
FILES ${CMAKE_SOURCE_DIR}/licensing/third-party-programs.txt
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/doc/${PROJECT_NAME}/licensing/")

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

Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion test/test_installation.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ def _create_match_list(self) -> List[str]:
examples.insert(0, "share/doc/umf/examples")
share.extend(examples)
share.append("share/doc/umf/LICENSE.TXT")
share.append("share/doc/umf/third-party-programs.txt")
share.append("share/doc/umf/licensing")
share.append("share/doc/umf/licensing/third-party-programs.txt")

all_files = bin + include + lib + share
if platform.system() == "Windows":
Expand Down
Loading