tools/CMakeLists.txt
author koda
Sun, 18 Oct 2009 14:44:06 +0000
changeset 2550 3f84392522cf
parent 2547 04b862264c4a
child 2593 dd995a9c8871
permissions -rw-r--r--
last minute fixes

if (APPLE AND BUNDLE)

find_package(OGGVORBIS REQUIRED)
find_package(SPARKLE)
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/)

string(REGEX REPLACE "(.*);-.*" "\\1" sdl_dir "${SDL_LIBRARY}")

if(SPARKLE_FOUND)
	set(SPARKLE_FOUND 1)
else()
	set(SPARKLE_FOUND 0)
endif()

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

endif(APPLE AND BUNDLE)