Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "iOS")
# set(CMAKE_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "iPhone Developer" CACHE STRING "" FORCE)
# set(CMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM "XXXXXXXXXX" CACHE STRING "" FORCE)
else()
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version" FORCE)
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.10" CACHE STRING "Minimum OS X deployment version" FORCE)
endif()

if (CMAKE_BUILD_TYPE STREQUAL "Release")
Expand Down
4 changes: 2 additions & 2 deletions Dexed.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@
osxCompatibility="10.10 SDK" osxArchitecture="Native" enablePluginBinaryCopyStep="1"
macOSDeploymentTarget="10.10"/>
<CONFIGURATION name="Release" isDebug="0" optimisation="3" targetName="Dexed"
osxSDK="10.10 SDK" osxCompatibility="10.9 SDK" enablePluginBinaryCopyStep="1"
macOSBaseSDK="10.10" macOSDeploymentTarget="10.9"/>
osxSDK="10.10 SDK" osxCompatibility="10.10 SDK" enablePluginBinaryCopyStep="1"
macOSBaseSDK="10.10" macOSDeploymentTarget="10.10"/>
</CONFIGURATIONS>
<MODULEPATHS>
<MODULEPATH id="juce_gui_extra" path="./assets/JUCE/modules"/>
Expand Down
2 changes: 1 addition & 1 deletion assets/installers/make_macos_pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ fi
cat > $TMPDIR/distribution.xml << XMLEND
<?xml version="1.0" encoding="utf-8"?>
<installer-gui-script minSpecVersion="1">
<os-version min="10.9"/>
<os-version min="10.10"/>
<title>${PRODUCT} ${VERSION}</title>
<license file="License.txt" />
<readme file="Readme.rtf" />
Expand Down