Browse Source

Fix imageviewer desktop icon path (#3005)

The issue only in this example, in the other places it is correct
pull/3006/head
Igor Demin 2 years ago committed by GitHub
parent
commit
752540cfcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      examples/imageviewer/desktopApp/build.gradle.kts

2
examples/imageviewer/desktopApp/build.gradle.kts

@ -28,7 +28,7 @@ compose.desktop {
packageName = "ImageViewer"
packageVersion = "1.0.0"
val iconsRoot = project.file("../common/src/desktopMain/resources/images")
val iconsRoot = project.file("../shared/src/commonMain/resources")
macOS {
iconFile.set(iconsRoot.resolve("icon-mac.icns"))
}

Loading…
Cancel
Save