[cmake-developers] [CMake 0014742]: The target property SUFFIX and/or BUNDLE_EXTENSION doesn't rename the extension of an framework
Mantis Bug Tracker
mantis at public.kitware.com
Fri Feb 7 17:20:49 EST 2014
The following issue has been SUBMITTED.
======================================================================
http://www.cmake.org/Bug/view.php?id=14742
======================================================================
Reported By: Roman80
Assigned To:
======================================================================
Project: CMake
Issue ID: 14742
Category: CMake
Reproducibility: always
Severity: minor
Priority: normal
Status: new
======================================================================
Date Submitted: 2014-02-07 17:20 EST
Last Modified: 2014-02-07 17:20 EST
======================================================================
Summary: The target property SUFFIX and/or BUNDLE_EXTENSION
doesn't rename the extension of an framework
Description:
The target property SUFFIX and/or BUNDLE_EXTENSION doesn't rename the extension
of a framework.
For e.g. an Adobe InDesign plugin is a framework but with the extension
".InDesignPlugin"
Maybe this could also be for other tools/programs too.
Steps to Reproduce:
Use the following commands to create a framework
project(MyPlugin)
add_library(${PROJECT_NAME} SHARED ${HEADERS} ${SOURCES})
set_target_properties(${PROJECT_NAME} PROPERTIES
FRAMEWORK TRUE
SUFFIX ".InDesignPlugin")
Expected result: MyPlugin.InDesignPlugin
----------------------------------------------------------------------
set_target_properties(${PROJECT_NAME} PROPERTIES
FRAMEWORK TRUE
BUNDLE_EXTENSION ".InDesignPlugin")
Expected result: MyPlugin.InDesignPlugin
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
2014-02-07 17:20 Roman80 New Issue
======================================================================
More information about the cmake-developers
mailing list