Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
e9cf1619
There was an error fetching the commit references. Please try again later.
Unverified
Commit
e9cf1619
authored
7 years ago
by
Simonx22
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
rename CITRA to YUZU
parent
1a3b3e91
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+6
-6
6 additions, 6 deletions
CMakeLists.txt
with
6 additions
and
6 deletions
CMakeLists.txt
+
6
−
6
View file @
e9cf1619
...
@@ -7,10 +7,10 @@ include(DownloadExternals)
...
@@ -7,10 +7,10 @@ include(DownloadExternals)
project
(
yuzu
)
project
(
yuzu
)
option
(
ENABLE_SDL2
"Enable the SDL2 frontend"
ON
)
option
(
ENABLE_SDL2
"Enable the SDL2 frontend"
ON
)
option
(
CITRA
_USE_BUNDLED_SDL2
"Download bundled SDL2 binaries"
OFF
)
option
(
YUZU
_USE_BUNDLED_SDL2
"Download bundled SDL2 binaries"
OFF
)
option
(
ENABLE_QT
"Enable the Qt frontend"
ON
)
option
(
ENABLE_QT
"Enable the Qt frontend"
ON
)
option
(
CITRA
_USE_BUNDLED_QT
"Download bundled Qt binaries"
OFF
)
option
(
YUZU
_USE_BUNDLED_QT
"Download bundled Qt binaries"
OFF
)
option
(
YUZU_USE_BUNDLED_UNICORN
"Download bundled Unicorn binaries"
OFF
)
option
(
YUZU_USE_BUNDLED_UNICORN
"Download bundled Unicorn binaries"
OFF
)
...
@@ -174,12 +174,12 @@ set(THREADS_PREFER_PTHREAD_FLAG ON)
...
@@ -174,12 +174,12 @@ set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package
(
Threads REQUIRED
)
find_package
(
Threads REQUIRED
)
if
(
ENABLE_SDL2
)
if
(
ENABLE_SDL2
)
if
(
CITRA
_USE_BUNDLED_SDL2
)
if
(
YUZU
_USE_BUNDLED_SDL2
)
# Detect toolchain and platform
# Detect toolchain and platform
if
(
MSVC14 AND ARCHITECTURE_x86_64
)
if
(
MSVC14 AND ARCHITECTURE_x86_64
)
set
(
SDL2_VER
"SDL2-2.0.5"
)
set
(
SDL2_VER
"SDL2-2.0.5"
)
else
()
else
()
message
(
FATAL_ERROR
"No bundled SDL2 binaries for your toolchain. Disable
CITRA
_USE_BUNDLED_SDL2 and provide your own."
)
message
(
FATAL_ERROR
"No bundled SDL2 binaries for your toolchain. Disable
YUZU
_USE_BUNDLED_SDL2 and provide your own."
)
endif
()
endif
()
if
(
DEFINED SDL2_VER
)
if
(
DEFINED SDL2_VER
)
...
@@ -235,11 +235,11 @@ if (UNICORN_FOUND)
...
@@ -235,11 +235,11 @@ if (UNICORN_FOUND)
endif
()
endif
()
if
(
ENABLE_QT
)
if
(
ENABLE_QT
)
if
(
CITRA
_USE_BUNDLED_QT
)
if
(
YUZU
_USE_BUNDLED_QT
)
if
(
MSVC14 AND ARCHITECTURE_x86_64
)
if
(
MSVC14 AND ARCHITECTURE_x86_64
)
set
(
QT_VER qt-5.7-msvc2015_64
)
set
(
QT_VER qt-5.7-msvc2015_64
)
else
()
else
()
message
(
FATAL_ERROR
"No bundled Qt binaries for your toolchain. Disable
CITRA
_USE_BUNDLED_QT and provide your own."
)
message
(
FATAL_ERROR
"No bundled Qt binaries for your toolchain. Disable
YUZU
_USE_BUNDLED_QT and provide your own."
)
endif
()
endif
()
if
(
DEFINED QT_VER
)
if
(
DEFINED QT_VER
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment