[CMake] adding extra resources to MACOSX package
Michael Jackson
mike.jackson at bluequartz.net
Fri Feb 27 07:06:27 EST 2009
Here is a code snippet from one of my own projects.
IF(APPLE)
SET(GUI_TYPE MACOSX_BUNDLE)
SET(MACOSX_BUNDLE_ICON_FILE ${MXATools_RESOURCES_DIR}/QHDFViewer.icns)
SET(PROJECT_SRCS ${PROJECT_SRCS} ${MACOSX_BUNDLE_ICON_FILE})
SET_SOURCE_FILES_PROPERTIES(${MACOSX_BUNDLE_ICON_FILE} PROPERTIES
MACOSX_PACKAGE_LOCATION Resources)
ENDIF (APPLE)
_________________________________________________________
Mike Jackson mike.jackson at bluequartz.net
BlueQuartz Software www.bluequartz.net
Principal Software Engineer Dayton, Ohio
On Feb 27, 2009, at 5:25 AM, Benoit Callebaut wrote:
> Hello,
> How can I copy external resources in the MACOSX bundle.
> I haven't seen any command to do this.
>
> I also need to change paths in a config file depending on the
> packaging (MACOSX or Linux or Windows).
> Is it possible to call some external program like sed ,awk or a
> custom script in CMAKE ?
>
> My target is a makefile but a solution also valid for XCode and
> Code::Blocks would also be great.
>
> Thanks
>
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ
>
> Follow this link to subscribe/unsubscribe:
> http://www.cmake.org/mailman/listinfo/cmake
More information about the CMake
mailing list