Are there are newer facilities in CMake 3.x that would allow me to add additional Plist values to the standard Mac OS X bundle plist that gets created?
I use the following code currently: set_target_properties(${TARGET_NAME} PROPERTIES MACOSX_BUNDLE_INFO_STRING "${PROJECT_NAME}${DBG_EXTENSION} Version ${VERSION_STRING}, Copyright 2014 BlueQuartz Software." MACOSX_BUNDLE_ICON_FILE ${ICON_FILE_NAME} MACOSX_BUNDLE_GUI_IDENTIFIER "${PROJECT_NAME}${DBG_EXTENSION}" MACOSX_BUNDLE_LONG_VERSION_STRING "${PROJECT_NAME}${DBG_EXTENSION} Version ${VERSION_STRING}" MACOSX_BUNDLE_BUNDLE_NAME ${PROJECT_NAME}${DBG_EXTENSION} MACOSX_BUNDLE_SHORT_VERSION_STRING ${VERSION_STRING} MACOSX_BUNDLE_BUNDLE_VERSION ${VERSION_STRING} MACOSX_BUNDLE_COPYRIGHT "Copyright 2014, BlueQuartz Software. All Rights Reserved." ) But I need to add the following to my plist: <key>NSHighResolutionCapable</key> <string>True</string> Thanks for any help -- Mike Jackson www.bluequartz.net -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake