CMake building on Mac OS: use a simpler way to put files within app bundles.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10688 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
ab78d7ee61
commit
4b5b11a1cb
@ -103,22 +103,17 @@ macro(CREATE_EXAMPLE NAME SOURCES LIBRARIES)
|
||||
endif(flsrcs)
|
||||
|
||||
if(APPLE)
|
||||
unset(RESOURCE_PATH)
|
||||
unset(ICON_NAME)
|
||||
if(${tname} STREQUAL "blocks" OR ${tname} STREQUAL "checkers" OR ${tname} STREQUAL "sudoku")
|
||||
set( ICON_NAME ${tname}.icns )
|
||||
set( RESOURCE_PATH "${PROJECT_SOURCE_DIR}/test/${tname}.app/Contents/Resources/${ICON_NAME}" )
|
||||
elseif(${tname} STREQUAL "demo")
|
||||
set( RESOURCE_PATH "${PROJECT_SOURCE_DIR}/test/demo.menu" )
|
||||
endif(${tname} STREQUAL "blocks" OR ${tname} STREQUAL "checkers" OR ${tname} STREQUAL "sudoku")
|
||||
|
||||
if(DEFINED RESOURCE_PATH)
|
||||
add_executable(${tname} MACOSX_BUNDLE ${srcs} ${RESOURCE_PATH})
|
||||
add_executable(${tname} MACOSX_BUNDLE ${srcs} ${${tname}_FLTK_UI_SRCS})
|
||||
if(DEFINED ICON_NAME)
|
||||
set_target_properties(${tname} PROPERTIES MACOSX_BUNDLE_ICON_FILE ${ICON_NAME})
|
||||
endif(DEFINED ICON_NAME)
|
||||
if(${tname} STREQUAL "demo")
|
||||
target_compile_definitions(demo PUBLIC USING_XCODE)
|
||||
endif(${tname} STREQUAL "demo")
|
||||
else()
|
||||
add_executable(${tname} MACOSX_BUNDLE ${srcs} ${${tname}_FLTK_UI_SRCS})
|
||||
endif(DEFINED RESOURCE_PATH)
|
||||
else()
|
||||
add_executable(${tname} WIN32 ${srcs} ${${tname}_FLTK_UI_SRCS})
|
||||
endif(APPLE)
|
||||
@ -126,13 +121,6 @@ macro(CREATE_EXAMPLE NAME SOURCES LIBRARIES)
|
||||
set_target_properties(${tname}
|
||||
PROPERTIES OUTPUT_NAME ${oname}
|
||||
)
|
||||
if(APPLE AND DEFINED RESOURCE_PATH)
|
||||
if(NOT ${tname} STREQUAL "demo")
|
||||
set_target_properties(${tname} PROPERTIES MACOSX_BUNDLE_ICON_FILE ${ICON_NAME})
|
||||
endif(NOT ${tname} STREQUAL "demo")
|
||||
set_target_properties(${tname} PROPERTIES RESOURCE ${RESOURCE_PATH})
|
||||
endif(APPLE AND DEFINED RESOURCE_PATH)
|
||||
|
||||
|
||||
target_link_libraries(${tname} ${LIBRARIES})
|
||||
|
||||
|
@ -110,7 +110,14 @@ endif(FLTK_HAVE_CAIRO)
|
||||
# - maybe more ...
|
||||
|
||||
# use a target filename to make sure the target directory gets created
|
||||
configure_file(demo.menu ${EXECUTABLE_OUTPUT_PATH}/demo.menu COPYONLY)
|
||||
if(APPLE) #copy files to bundle resources
|
||||
configure_file(demo.menu ${EXECUTABLE_OUTPUT_PATH}/demo.app/Contents/Resources/demo.menu COPYONLY)
|
||||
configure_file(blocks.app/Contents/Resources/blocks.icns ${EXECUTABLE_OUTPUT_PATH}/blocks.app/Contents/Resources/blocks.icns COPYONLY)
|
||||
configure_file(checkers.app/Contents/Resources/checkers.icns ${EXECUTABLE_OUTPUT_PATH}/checkers.app/Contents/Resources/checkers.icns COPYONLY)
|
||||
configure_file(sudoku.app/Contents/Resources/sudoku.icns ${EXECUTABLE_OUTPUT_PATH}/sudoku.app/Contents/Resources/sudoku.icns COPYONLY)
|
||||
else()
|
||||
configure_file(demo.menu ${EXECUTABLE_OUTPUT_PATH}/demo.menu COPYONLY)
|
||||
endif(APPLE)
|
||||
|
||||
# use target directory only to avoid redundancy
|
||||
configure_file(rgb.txt ${EXECUTABLE_OUTPUT_PATH} COPYONLY)
|
||||
|
Loading…
Reference in New Issue
Block a user