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
296ccb69
There was an error fetching the commit references. Please try again later.
Commit
296ccb69
authored
2 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
android: cmake: Use cmake_dependent_option as appropriate.
parent
a7890461
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
+2
-2
2 additions, 2 deletions
CMakeLists.txt
with
2 additions
and
2 deletions
CMakeLists.txt
+
2
−
2
View file @
296ccb69
...
@@ -20,7 +20,7 @@ CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 binaries" ON
...
@@ -20,7 +20,7 @@ CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 binaries" ON
# On Linux system SDL2 is likely to be lacking HIDAPI support which have drawbacks but is needed for SDL motion
# On Linux system SDL2 is likely to be lacking HIDAPI support which have drawbacks but is needed for SDL motion
CMAKE_DEPENDENT_OPTION
(
YUZU_USE_EXTERNAL_SDL2
"Compile external SDL2"
ON
"ENABLE_SDL2;NOT MSVC"
OFF
)
CMAKE_DEPENDENT_OPTION
(
YUZU_USE_EXTERNAL_SDL2
"Compile external SDL2"
ON
"ENABLE_SDL2;NOT MSVC"
OFF
)
option
(
ENABLE_LIBUSB
"Enable the use of LibUSB"
"NOT
${
ANDROID
}
"
)
cmake_dependent_
option
(
ENABLE_LIBUSB
"Enable the use of LibUSB"
ON
"NOT ANDROID"
OFF
)
option
(
ENABLE_OPENGL
"Enable OpenGL"
ON
)
option
(
ENABLE_OPENGL
"Enable OpenGL"
ON
)
mark_as_advanced
(
FORCE ENABLE_OPENGL
)
mark_as_advanced
(
FORCE ENABLE_OPENGL
)
...
@@ -49,7 +49,7 @@ option(YUZU_TESTS "Compile tests" "${BUILD_TESTING}")
...
@@ -49,7 +49,7 @@ option(YUZU_TESTS "Compile tests" "${BUILD_TESTING}")
option
(
YUZU_USE_PRECOMPILED_HEADERS
"Use precompiled headers"
ON
)
option
(
YUZU_USE_PRECOMPILED_HEADERS
"Use precompiled headers"
ON
)
option
(
YUZU_ROOM
"Compile LDN room server"
"NOT
${
ANDROID
}
"
)
cmake_dependent_
option
(
YUZU_ROOM
"Compile LDN room server"
ON
"NOT ANDROID"
OFF
)
CMAKE_DEPENDENT_OPTION
(
YUZU_CRASH_DUMPS
"Compile Windows crash dump (Minidump) support"
OFF
"WIN32"
OFF
)
CMAKE_DEPENDENT_OPTION
(
YUZU_CRASH_DUMPS
"Compile Windows crash dump (Minidump) support"
OFF
"WIN32"
OFF
)
...
...
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