maybe you have to specify everything in one comman

This commit is contained in:
tildearrow 2024-06-18 14:39:27 -05:00
parent b4bb897bad
commit b102f52092

View file

@ -1279,15 +1279,10 @@ if (NOT ANDROID OR TERMUX)
install(FILES res/logo.png RENAME furnace.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/1024x1024/apps) install(FILES res/logo.png RENAME furnace.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/1024x1024/apps)
else() else()
if (MAKE_BUNDLE) if (MAKE_BUNDLE)
install(TARGETS ${FURNACE} BUNDLE DESTINATION Applications) install(TARGETS ${FURNACE} BUNDLE DESTINATION Applications RESOURCE DESTINATION Resources)
else() else()
install(TARGETS ${FURNACE} RUNTIME DESTINATION bin) install(TARGETS ${FURNACE} RUNTIME DESTINATION bin)
endif() endif()
# ?!?!
if (APPLE AND NOT FORCE_APPLE_BIN)
install(TARGETS ${FURNACE} RESOURCE DESTINATION Resources)
endif()
endif() endif()
endif() endif()