Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
6fc4eb92
Unverified
Commit
6fc4eb92
authored
Jul 15, 2019
by
Gabi Melman
Committed by
GitHub
Jul 15, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1150 from ainola/v1.x
meson: fix typo (extrenal -> external)
parents
81e82fb2
4180d00a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
meson.build
meson.build
+3
-3
meson_options.txt
meson_options.txt
+1
-1
No files found.
meson.build
View file @
6fc4eb92
...
@@ -20,7 +20,7 @@ compile_args = []
...
@@ -20,7 +20,7 @@ compile_args = []
dep_list += dependency('threads')
dep_list += dependency('threads')
# Check for FMT
# Check for FMT
if get_option('ext
re
nal_fmt')
if get_option('ext
er
nal_fmt')
if not meson.version().version_compare('>=0.49.0')
if not meson.version().version_compare('>=0.49.0')
warning('Finding fmt can fail wit meson versions before 0.49.0')
warning('Finding fmt can fail wit meson versions before 0.49.0')
endif
endif
...
@@ -96,12 +96,12 @@ endif
...
@@ -96,12 +96,12 @@ endif
summary_str = '''spdlog build summary:
summary_str = '''spdlog build summary:
- using ext
re
nal fmt: @0@
- using ext
er
nal fmt: @0@
- building tests: @1@
- building tests: @1@
- building examples: @2@
- building examples: @2@
- building benchmarks: @3@
- building benchmarks: @3@
'''.format(
'''.format(
get_option('ext
re
nal_fmt'),
get_option('ext
er
nal_fmt'),
get_option('enable_tests'),
get_option('enable_tests'),
get_option('enable_examples'),
get_option('enable_examples'),
get_option('enable_benchmarks')
get_option('enable_benchmarks')
...
...
meson_options.txt
View file @
6fc4eb92
option('ext
re
nal_fmt', type: 'boolean', value: false)
option('ext
er
nal_fmt', type: 'boolean', value: false)
option('enable_examples', type: 'boolean', value: false)
option('enable_examples', type: 'boolean', value: false)
option('enable_benchmarks', type: 'boolean', value: false)
option('enable_benchmarks', type: 'boolean', value: false)
option('enable_tests', type: 'boolean', value: false)
option('enable_tests', type: 'boolean', value: false)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment