Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
e9838028
Commit
e9838028
authored
Nov 29, 2017
by
Loo Rong Jie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comments about warning flags
parent
79ae60ed
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
CMake/README.md
+5
-0
CMakeLists.txt
+6
-1
No files found.
CMake/README.md
View file @
e9838028
...
@@ -44,6 +44,11 @@
...
@@ -44,6 +44,11 @@
set(CMAKE_CXX_FLAGS "-std=c++11 -stdlib=libc++ ${CMAKE_CXX_FLAGS}")
set(CMAKE_CXX_FLAGS "-std=c++11 -stdlib=libc++ ${CMAKE_CXX_FLAGS}")
if (MSVC)
if (MSVC)
# /wd4005 macro-redefinition
# /wd4068 unknown pragma
# /wd4244 conversion from 'type1' to 'type2'
# /wd4267 conversion from 'size_t' to 'type2'
# /wd4800 force value to bool 'true' or 'false' (performance warning)
add_compile_options(/wd4005 /wd4068 /wd4244 /wd4267 /wd4800)
add_compile_options(/wd4005 /wd4068 /wd4244 /wd4267 /wd4800)
add_definitions(/DNOMINMAX /DWIN32_LEAN_AND_MEAN=1 /D_CRT_SECURE_NO_WARNINGS)
add_definitions(/DNOMINMAX /DWIN32_LEAN_AND_MEAN=1 /D_CRT_SECURE_NO_WARNINGS)
endif()
endif()
...
...
CMakeLists.txt
View file @
e9838028
...
@@ -27,8 +27,13 @@ include(AbseilHelpers)
...
@@ -27,8 +27,13 @@ include(AbseilHelpers)
# config options
# config options
if
(
MSVC
)
if
(
MSVC
)
add_definitions
(
/DNOMINMAX /DWIN32_LEAN_AND_MEAN=1 /D_CRT_SECURE_NO_WARNINGS
)
# /wd4005 macro-redefinition
# /wd4068 unknown pragma
# /wd4244 conversion from 'type1' to 'type2'
# /wd4267 conversion from 'size_t' to 'type2'
# /wd4800 force value to bool 'true' or 'false' (performance warning)
add_compile_options
(
/W3 /WX /wd4005 /wd4068 /wd4244 /wd4267 /wd4800
)
add_compile_options
(
/W3 /WX /wd4005 /wd4068 /wd4244 /wd4267 /wd4800
)
add_definitions
(
/DNOMINMAX /DWIN32_LEAN_AND_MEAN=1 /D_CRT_SECURE_NO_WARNINGS
)
else
()
else
()
set
(
ABSL_STD_CXX_FLAG
"-std=c++11"
CACHE STRING
"c++ std flag (default: c++11)"
)
set
(
ABSL_STD_CXX_FLAG
"-std=c++11"
CACHE STRING
"c++ std flag (default: c++11)"
)
endif
()
endif
()
...
...
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