Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
8cd6a656
Commit
8cd6a656
authored
Apr 08, 2022
by
Jean-Baptiste Mardelle
Browse files
Mac OS: fix access to microphone
parent
b729c5c7
Pipeline
#161157
canceled with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
data/CMakeLists.txt
View file @
8cd6a656
...
...
@@ -12,6 +12,16 @@ add_subdirectory(resourceproviders)
add_subdirectory
(
shortcuts
)
add_subdirectory
(
luts
)
if
(
APPLE
)
# Apple app package
set_target_properties
(
kdenlive PROPERTIES MACOSX_BUNDLE_INFO_PLIST
${
CMAKE_CURRENT_SOURCE_DIR
}
/Info.plist
)
set_target_properties
(
kdenlive PROPERTIES
MACOSX_BUNDLE_BUNDLE_NAME
"Kdenlive"
MACOSX_BUNDLE_LONG_VERSION_STRING
"
${
KDENLIVE_VERSION
}
"
MACOSX_BUNDLE_SHORT_VERSION_STRING
"
${
RELEASE_SERVICE_VERSION_MAJOR
}
.
${
RELEASE_SERVICE_VERSION_MINOR
}
.
${
RELEASE_SERVICE_VERSION_MICRO
}
"
MACOSX_BUNDLE_GUI_IDENTIFIER
"org.kde.kdenlive"
)
endif
()
install
(
FILES
meta_magiclantern.png
encodingprofiles.rc
...
...
data/Info.plist
0 → 100644
View file @
8cd6a656
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version=
"1.0"
>
<dict>
<key>
CFBundleDevelopmentRegion
</key>
<string>
English
</string>
<key>
CFBundleExecutable
</key>
<string>
${MACOSX_BUNDLE_EXECUTABLE_NAME}
</string>
<key>
CFBundleGetInfoString
</key>
<string>
${MACOSX_BUNDLE_INFO_STRING}
</string>
<key>
CFBundleIconFile
</key>
<string>
${MACOSX_BUNDLE_ICON_FILE}
</string>
<key>
CFBundleIdentifier
</key>
<string>
${MACOSX_BUNDLE_GUI_IDENTIFIER}
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleLongVersionString
</key>
<string>
${MACOSX_BUNDLE_LONG_VERSION_STRING}
</string>
<key>
CFBundleName
</key>
<string>
${MACOSX_BUNDLE_BUNDLE_NAME}
</string>
<key>
CFBundlePackageType
</key>
<string>
APPL
</string>
<key>
CFBundleShortVersionString
</key>
<string>
${MACOSX_BUNDLE_SHORT_VERSION_STRING}
</string>
<key>
CFBundleSignature
</key>
<string>
????
</string>
<key>
CFBundleVersion
</key>
<string>
${MACOSX_BUNDLE_BUNDLE_VERSION}
</string>
<key>
NSMicrophoneUsageDescription
</key>
<string>
audio recording
</string>
<key>
CSResourcesFileMapped
</key>
<true/>
<key>
NSHumanReadableCopyright
</key>
<string>
${MACOSX_BUNDLE_COPYRIGHT}
</string>
<key>
NSHighResolutionCapable
</key>
<string>
True
</string>
</dict>
</plist>
Jean-Baptiste Mardelle
@mardelle
mentioned in issue
#1386
·
Apr 08, 2022
mentioned in issue
#1386
mentioned in issue #1386
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment