tools/CMakeLists.txt
author koda
Tue, 14 Jul 2009 20:02:07 +0000
changeset 2261 57e99c908e7c
parent 2220 110266ba2ef7
child 2401 2a694ea2a437
permissions -rw-r--r--
a lot of stuff: - added an autoupdater option * works in mac osx only * the xml file should be hosted on official webserver * checkbox could be moved in a "updates section" of the option page * only english and italian translation provided for new option - reverted openalbridge type for compatibility - german translation fix

if (APPLE AND BUNDLE)

find_program(macdeployqt_EXE NAMES macdeployqt macdeployqt-mac)

if(NOT macdeployqt_EXE)
	message(FATAL_ERROR "The utility macdeployqt is required to create the bundle!")
endif()

#dummy target, we're interested in the postscript
add_custom_target(bundle)

set_target_properties(bundle PROPERTIES POST_INSTALL_SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/CreateMacBundle.cmake)

set(frameworks_dir ${bundle_name}/Contents/Frameworks/)

CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/CreateMacBundle.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/CreateMacBundle.cmake)

endif()