tools/CMakeLists.txt
author nemo
Sun, 02 Aug 2009 17:37:45 +0000
changeset 2294 2e6ffb3ef304
parent 2220 110266ba2ef7
child 2401 2a694ea2a437
permissions -rw-r--r--
For people's consideration. Restore the .11 behaviour of not initialising sound if music is turned off. Reason. I still get 100% CPU useage in frontend due to sucky sound daemon setups *cough*pulseaudio*cough* so this offers an easy workaround for people (turn off music). Disadvantage, this removes Smaxx' code to disable sound-related buttons on failure to init sound.

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()