tools/CreateMacBundle.cmake.in
changeset 8317 ec9f94ab2737
parent 8316 89232b2fa1d6
child 8322 50369fa5053b
equal deleted inserted replaced
8316:89232b2fa1d6 8317:ec9f94ab2737
     1 message(STATUS "Performing standalone bundle creation...")
     1 message(STATUS "Performing standalone bundle creation...")
     2 
     2 
     3 execute_process(COMMAND stat ${target_library_install_dir} RESULT_VARIABLE doBundle OUTPUT_QUIET ERROR_QUIET)
     3 execute_process(COMMAND stat ${frameworks_dir} RESULT_VARIABLE doBundle OUTPUT_QUIET ERROR_QUIET)
     4 execute_process(COMMAND mkdir -p ${target_library_install_dir})
     4 execute_process(COMMAND mkdir -p ${frameworks_dir})
     5 # macdeployqt will convert safely any absolute path library for 'hedgewars'
     5 # macdeployqt will convert safely any absolute path library for 'hedgewars'
     6 execute_process(COMMAND ${macdeployqt_executable} ${CMAKE_BINARY_DIR}/Hedgewars.app OUTPUT_QUIET ERROR_QUIET)
     6 execute_process(COMMAND ${macdeployqt_executable} ${CMAKE_BINARY_DIR}/Hedgewars.app OUTPUT_QUIET ERROR_QUIET)
     7 
     7 
     8 if(NOT ${NOVIDEOREC})
     8 if(NOT ${NOVIDEOREC})
     9     # but macdeployqt will not work for 'hwengine'; luckily the dylibs were already updated before
     9     # but macdeployqt will not work for 'hwengine'; luckily the dylibs were already updated before
    17     #(yes libpng is pulled by macdeployqt even when NOVIDEOREC is active)
    17     #(yes libpng is pulled by macdeployqt even when NOVIDEOREC is active)
    18     execute_process(COMMAND install_name_tool -change ${PNG_LIBRARY} @executable_path/../Frameworks/${PNG_LIBNAME} ${CMAKE_INSTALL_PREFIX}/hwengine)
    18     execute_process(COMMAND install_name_tool -change ${PNG_LIBRARY} @executable_path/../Frameworks/${PNG_LIBNAME} ${CMAKE_INSTALL_PREFIX}/hwengine)
    19 endif()
    19 endif()
    20 
    20 
    21 if(doBundle EQUAL 1)
    21 if(doBundle EQUAL 1)
    22     execute_process(COMMAND cp -pPR ${sdl_library_only} ${target_library_install_dir}/SDL.framework)
    22     execute_process(COMMAND cp -pPR ${sdl_library_only} ${frameworks_dir}/SDL.framework)
    23     execute_process(COMMAND cp -pPR ${SDLIMAGE_LIBRARY} ${target_library_install_dir}/SDL_image.framework)
    23     execute_process(COMMAND cp -pPR ${SDLIMAGE_LIBRARY} ${frameworks_dir}/SDL_image.framework)
    24     execute_process(COMMAND cp -pPR ${SDLNET_LIBRARY}   ${target_library_install_dir}/SDL_net.framework)
    24     execute_process(COMMAND cp -pPR ${SDLNET_LIBRARY}   ${frameworks_dir}/SDL_net.framework)
    25     execute_process(COMMAND cp -pPR ${SDLTTF_LIBRARY}   ${target_library_install_dir}/SDL_ttf.framework)
    25     execute_process(COMMAND cp -pPR ${SDLTTF_LIBRARY}   ${frameworks_dir}/SDL_ttf.framework)
    26     execute_process(COMMAND cp -pPR ${SDLMIXER_LIBRARY} ${target_library_install_dir}/SDL_mixer.framework)
    26     execute_process(COMMAND cp -pPR ${SDLMIXER_LIBRARY} ${frameworks_dir}/SDL_mixer.framework)
    27     execute_process(COMMAND cp -pPR ${OGG_LIBRARY}      ${target_library_install_dir}/Ogg.framework)
    27     execute_process(COMMAND cp -pPR ${OGG_LIBRARY}      ${frameworks_dir}/Ogg.framework)
    28     execute_process(COMMAND cp -pPR ${VORBIS_LIBRARY}   ${target_library_install_dir}/Vorbis.framework)
    28     execute_process(COMMAND cp -pPR ${VORBIS_LIBRARY}   ${frameworks_dir}/Vorbis.framework)
    29 
    29 
    30     if(${SPARKLE_FOUND})
    30     if(${SPARKLE_FOUND})
    31         execute_process(COMMAND cp -pPR ${SPARKLE_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/Sparkle.framework)
    31         execute_process(COMMAND cp -pPR ${SPARKLE_LIBRARY} ${frameworks_dir}/Sparkle.framework)
    32     endif()
    32     endif()
    33     message(STATUS "Bundle frameworks added")
    33     message(STATUS "Bundle frameworks added")
    34 else()
    34 else()
    35     message(STATUS "Bundle frameworks already present; skipping...")
    35     message(STATUS "Bundle frameworks already present; skipping...")
    36 endif()
    36 endif()