Skip to content

Commit

Permalink
Added missing DESTINATION to file copy
Browse files Browse the repository at this point in the history
  • Loading branch information
MattClarkson committed May 9, 2013
1 parent 058528e commit 3919b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BlueBerry/CMake/FunctionCreateBlueBerryApplication.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ if(APPLE)
set(icon_full_path "${CMAKE_CURRENT_SOURCE_DIR}/icons/${icon_name}")
if(EXISTS "${icon_full_path}")
set_target_properties(${_APP_NAME} PROPERTIES MACOSX_BUNDLE_ICON_FILE "${icon_name}")
file(COPY ${icon_full_path} "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${_APP_NAME}.app/Contents/Resources/")
file(COPY ${icon_full_path} DESTINATION "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${_APP_NAME}.app/Contents/Resources/")
INSTALL (FILES ${icon_full_path} DESTINATION "${_APP_NAME}.app/Contents/Resources/")
endif()
endif()
Expand Down

0 comments on commit 3919b0a

Please sign in to comment.