forked from arkhamsaiyan/citra-canary
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
qt: Add support for building for iOS. (#6594)
- Loading branch information
Steveice10
authored
Jun 8, 2023
1 parent
d9bf4fd
commit 238a574
Showing
17 changed files
with
271 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Gets a UTC timstamp and sets the provided variable to it | ||
function(get_timestamp _var) | ||
string(TIMESTAMP timestamp UTC) | ||
set(${_var} "${timestamp}" PARENT_SCOPE) | ||
endfunction() | ||
|
||
list(APPEND CMAKE_MODULE_PATH "${SRC_DIR}/externals/cmake-modules") | ||
|
||
# Find the package here with the known path so that the GetGit commands can find it as well | ||
find_package(Git QUIET PATHS "${GIT_EXECUTABLE}") | ||
|
||
# generate git/build information | ||
include(GetGitRevisionDescription) | ||
get_git_head_revision(GIT_REF_SPEC GIT_REV) | ||
string(SUBSTRING "${GIT_REV}" 0 7 GIT_SHORT_REV) | ||
git_describe(GIT_DESC --always --long --dirty) | ||
git_branch_name(GIT_BRANCH) | ||
get_timestamp(BUILD_DATE) | ||
|
||
# Generate cpp with Git revision from template | ||
# Also if this is a CI build, add the build name (ie: Nightly, Canary) to the scm_rev file as well | ||
set(REPO_NAME "") | ||
set(BUILD_VERSION "0") | ||
set(BUILD_FULLNAME "${GIT_SHORT_REV}") | ||
if (DEFINED ENV{CI}) | ||
if (DEFINED ENV{GITHUB_ACTIONS}) | ||
set(BUILD_REPOSITORY $ENV{GITHUB_REPOSITORY}) | ||
set(BUILD_TAG $ENV{GITHUB_REF_NAME}) | ||
endif() | ||
|
||
# regex capture the string nightly or canary into CMAKE_MATCH_1 | ||
string(REGEX MATCH "citra-emu/citra-?(.*)" OUTVAR ${BUILD_REPOSITORY}) | ||
if ("${CMAKE_MATCH_COUNT}" GREATER 0) | ||
# capitalize the first letter of each word in the repo name. | ||
string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1}) | ||
foreach(WORD ${REPO_NAME_LIST}) | ||
string(SUBSTRING ${WORD} 0 1 FIRST_LETTER) | ||
string(SUBSTRING ${WORD} 1 -1 REMAINDER) | ||
string(TOUPPER ${FIRST_LETTER} FIRST_LETTER) | ||
set(REPO_NAME "${REPO_NAME}${FIRST_LETTER}${REMAINDER}") | ||
endforeach() | ||
string(REGEX MATCH "${CMAKE_MATCH_1}-([0-9]+)" OUTVAR ${BUILD_TAG}) | ||
if (${CMAKE_MATCH_COUNT} GREATER 0) | ||
set(BUILD_VERSION ${CMAKE_MATCH_1}) | ||
endif() | ||
if (BUILD_VERSION) | ||
# This leaves a trailing space on the last word, but we actually want that | ||
# because of how it's styled in the title bar. | ||
set(BUILD_FULLNAME "${REPO_NAME} ${BUILD_VERSION} ") | ||
else() | ||
set(BUILD_FULLNAME "") | ||
endif() | ||
endif() | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="21701" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" initialViewController="Y6W-OH-hqX"> | ||
<dependencies> | ||
<deployment identifier="iOS"/> | ||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="21679"/> | ||
</dependencies> | ||
<scenes> | ||
<!--View Controller--> | ||
<scene sceneID="s0d-6b-0kx"> | ||
<objects> | ||
<viewController id="Y6W-OH-hqX" sceneMemberID="viewController"> | ||
<view key="view" contentMode="scaleToFill" id="5EZ-qb-Rvc"> | ||
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/> | ||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | ||
<subviews> | ||
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="launch_logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="yrZ-hu-Uge"> | ||
<rect key="frame" x="-59.666666666666657" y="306" width="512.33333333333337" height="240"/> | ||
<constraints> | ||
<constraint firstAttribute="height" constant="240" id="VhL-hA-Bwr"/> | ||
</constraints> | ||
</imageView> | ||
</subviews> | ||
<viewLayoutGuide key="safeArea" id="vDu-zF-Fre"/> | ||
<color key="backgroundColor" systemColor="systemBackgroundColor"/> | ||
<constraints> | ||
<constraint firstItem="yrZ-hu-Uge" firstAttribute="centerX" secondItem="5EZ-qb-Rvc" secondAttribute="centerX" id="1y3-Mx-a65"/> | ||
<constraint firstItem="yrZ-hu-Uge" firstAttribute="centerY" secondItem="5EZ-qb-Rvc" secondAttribute="centerY" id="vNO-xV-EPD"/> | ||
</constraints> | ||
</view> | ||
</viewController> | ||
<placeholder placeholderIdentifier="IBFirstResponder" id="Ief-a0-LHa" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/> | ||
</objects> | ||
<point key="canvasLocation" x="219" y="18"/> | ||
</scene> | ||
</scenes> | ||
<resources> | ||
<image name="launch_logo.png" width="512" height="512"/> | ||
<systemColor name="systemBackgroundColor"> | ||
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | ||
</systemColor> | ||
</resources> | ||
</document> |
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libressl
updated
from 8929f8 to dcf9a8
Oops, something went wrong.