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
3eeced78
Commit
3eeced78
authored
Jul 10, 2021
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some cmake wdev warnings
parent
c23430b4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
CMakeLists.txt
CMakeLists.txt
+7
-2
No files found.
CMakeLists.txt
View file @
3eeced78
...
...
@@ -99,10 +99,15 @@ endif ()
if
(
WIN32
)
option
(
SPDLOG_WCHAR_SUPPORT
"Support wchar api"
OFF
)
option
(
SPDLOG_WCHAR_FILENAMES
"Support wchar filenames"
OFF
)
else
()
SET
(
SPDLOG_WCHAR_SUPPORT OFF CACHE BOOL
"non supported option"
FORCE
)
SET
(
SPDLOG_WCHAR_FILENAMES OFF CACHE BOOL
"non supported option"
FORCE
)
endif
()
if
(
${
CMAKE_SYSTEM_NAME
}
STREQUAL
"Linux"
)
option
(
SPDLOG_CLOCK_COARSE
"Use the much faster (but much less accurate) CLOCK_REALTIME_COARSE instead of the regular clock,"
OFF
)
option
(
SPDLOG_CLOCK_COARSE
"Use CLOCK_REALTIME_COARSE instead of the regular clock,"
OFF
)
else
()
SET
(
SPDLOG_CLOCK_COARSE OFF CACHE BOOL
"non supported option"
FORCE
)
endif
()
option
(
SPDLOG_PREVENT_CHILD_FD
"Prevent from child processes to inherit log file descriptors"
OFF
)
...
...
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