Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Merge requests
!2744
Fix versions in Info.plist.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Ghislain MARY
requested to merge
fix/versions-in-info.plist
into
master
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
3
0
0
Compare
master
version 1
a5a22b15
1 year ago
master (base)
and
latest version
latest version
ea2e252d
1 commit,
1 year ago
version 1
a5a22b15
1 commit,
1 year ago
3 files
+
2
−
15
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
Search (e.g. *.vue) (Ctrl+P)
build/osx/Info.plist.in
+
2
−
2
Options
View file @ ea2e252d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -14,9 +14,9 @@
<key>
CFBundleIdentifier
</key>
<string>
${MACOSX_FRAMEWORK_IDENTIFIER}
</string>
<key>
LSMinimumSystemVersion
</key>
<string>
${
MIN_OS
}
</string>
<string>
${
CMAKE_OSX_DEPLOYMENT_TARGET
}
</string>
<key>
MinimumOSVersion
</key>
<string>
${
MIN_OS
}
</string>
<string>
${
CMAKE_OSX_DEPLOYMENT_TARGET
}
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleLongVersionString
</key>
src/CMakeLists.txt
+
0
−
7
Options
View file @ ea2e252d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -711,12 +711,6 @@ if(BUILD_SHARED_LIBS)
endif
()
target_compile_definitions
(
liblinphone PRIVATE
"-DLINPHONE_EXPORTS"
)
if
(
APPLE
)
if
(
IOS
)
set
(
MIN_OS
${
LINPHONE_IOS_DEPLOYMENT_TARGET
}
)
else
()
set
(
MIN_OS
${
CMAKE_OSX_DEPLOYMENT_TARGET
}
)
endif
()
set_source_files_properties
(
${
LINPHONE_ROOT_HEADER_FILES
}
PROPERTIES MACOSX_PACKAGE_LOCATION
"Headers/"
)
set_source_files_properties
(
${
LINPHONE_C_API_HEADER_FILES
}
PROPERTIES MACOSX_PACKAGE_LOCATION
"Headers/api"
)
set_source_files_properties
(
${
LINPHONE_ENUMS_HEADER_FILES
}
PROPERTIES MACOSX_PACKAGE_LOCATION
"Headers/enums"
)
@@ -730,7 +724,6 @@ if(BUILD_SHARED_LIBS)
PUBLIC_HEADER
"
${
one_header_file
}
"
)
endif
()
if
(
WIN32
)
# Export Xerces and Soci symbols.
if
(
ENABLE_DB_STORAGE
)
tester/CMakeLists.txt
+
0
−
6
Options
View file @ ea2e252d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -433,12 +433,6 @@ if(ANDROID OR IOS)
target_link_libraries
(
linphonetester
${
LINPHONE_LIBS_FOR_TOOLS
}
${
OTHER_LIBS_FOR_TESTER
}
)
#TODO: replace by if(APPLE) when we want to make apple framework on linphone-desktop too
if
(
IOS
)
if
(
IOS
)
set
(
MIN_OS
${
LINPHONE_IOS_DEPLOYMENT_TARGET
}
)
else
()
set
(
MIN_OS
${
CMAKE_OSX_DEPLOYMENT_TARGET
}
)
endif
()
set_target_properties
(
linphonetester PROPERTIES
FRAMEWORK TRUE
MACOSX_FRAMEWORK_IDENTIFIER com.belledonne-communications.linphonetester
Menu
Explore
Projects
Groups
Topics
Snippets