Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
openmw
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
OpenMW
openmw
Commits
e3cedb5b
Verified
Commit
e3cedb5b
authored
2 years ago
by
Benjamin Winger
Browse files
Options
Downloads
Patches
Plain Diff
Set yaml-cpp and ICU as REQUIRED
parent
2c5a4e64
No related branches found
No related tags found
Loading
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 @
e3cedb5b
...
...
@@ -251,7 +251,7 @@ set(USED_OSG_PLUGINS
option
(
OPENMW_USE_SYSTEM_ICU
"Use system ICU library instead of internal. If disabled, requires autotools"
ON
)
if
(
OPENMW_USE_SYSTEM_ICU
)
find_package
(
ICU COMPONENTS uc i18n
)
find_package
(
ICU
REQUIRED
COMPONENTS uc i18n
)
endif
()
option
(
OPENMW_USE_SYSTEM_YAML_CPP
"Use system yaml-cpp library instead of internal."
ON
)
...
...
@@ -262,7 +262,7 @@ else()
endif
()
option
(
YAML_CPP_STATIC
"Link static build of yaml-cpp into the binaries"
${
_yaml_cpp_static_default
}
)
if
(
OPENMW_USE_SYSTEM_YAML_CPP
)
find_package
(
yaml-cpp
)
find_package
(
yaml-cpp
REQUIRED
)
endif
()
add_subdirectory
(
extern
)
...
...
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