Skip to content

Commit

Permalink
Fix "no files found matching .jpg" installer issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
dechamps committed Jan 2, 2021
1 parent 8f3dc68 commit 9e09689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ include(build_msvc)
build_msvc(SOURCE_DIR "${CMAKE_CURRENT_LIST_DIR}" BUILD_DIR "${FLEXASIO_BUILD_ROOT_DIR}/x64" ARCH amd64)
build_msvc(SOURCE_DIR "${CMAKE_CURRENT_LIST_DIR}" BUILD_DIR "${FLEXASIO_BUILD_ROOT_DIR}/x86" ARCH x86)

file(GLOB FLEXASIO_DOC_FILES LIST_DIRECTORIES FALSE "${CMAKE_CURRENT_LIST_DIR}/../*.txt" "${CMAKE_CURRENT_LIST_DIR}/../*.md")
file(GLOB FLEXASIO_DOC_FILES LIST_DIRECTORIES FALSE "${CMAKE_CURRENT_LIST_DIR}/../*.txt" "${CMAKE_CURRENT_LIST_DIR}/../*.md" "${CMAKE_CURRENT_LIST_DIR}/../*.jpg")
file(INSTALL ${FLEXASIO_DOC_FILES} DESTINATION "${FLEXASIO_BUILD_ROOT_DIR}")

configure_file("${CMAKE_CURRENT_LIST_DIR}/installer.in.iss" "${FLEXASIO_BUILD_ROOT_DIR}/installer.iss" @ONLY)
Expand Down

0 comments on commit 9e09689

Please sign in to comment.