Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
benchmark
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
benchmark
Commits
e863292d
Commit
e863292d
authored
Aug 01, 2014
by
Matt Clarkson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Detect compiler flags and append to default CMake flags
parent
4940eebf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
3 deletions
+37
-3
CMakeLists.txt
CMakeLists.txt
+37
-3
No files found.
CMakeLists.txt
View file @
e863292d
...
@@ -20,9 +20,43 @@ include_directories(${source_dir}/include)
...
@@ -20,9 +20,43 @@ include_directories(${source_dir}/include)
ExternalProject_Get_Property
(
googletest binary_dir
)
ExternalProject_Get_Property
(
googletest binary_dir
)
link_directories
(
${
binary_dir
}
)
link_directories
(
${
binary_dir
}
)
set
(
CMAKE_CXX_FLAGS
"-Wall -Werror -pedantic-errors --std=c++0x"
)
# Set up the compiler flags
set
(
CMAKE_CXX_FLAGS_DEBUG
"-g -O0 -DDEBUG"
)
include
(
CheckCXXCompilerFlag
)
set
(
CMAKE_CXX_FLAGS_RELEASE
"-fno-strict-aliasing -O3 -DNDEBUG"
)
# Enable the latest C++ standard possible
check_cxx_compiler_flag
(
--std=c++14 HAVE_FLAG_CXX_14
)
check_cxx_compiler_flag
(
--std=c++11 HAVE_FLAG_CXX_11
)
check_cxx_compiler_flag
(
--std=c++0x HAVE_FLAG_CXX_0X
)
if
(
HAVE_FLAG_CXX_14
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
--std=c++14"
)
elseif
(
HAVE_FLAG_CXX_11
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
--std=c++11"
)
elseif
(
HAVE_FLAG_CXX_0X
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
--std=c++0x"
)
endif
()
# Turn compiler warnings up to 11
check_cxx_compiler_flag
(
-Wall HAVE_FLAG_WALL
)
if
(
HAVE_FLAG_WALL
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Wall"
)
endif
()
check_cxx_compiler_flag
(
-Werror HAVE_FLAG_WERROR
)
if
(
HAVE_FLAG_WERROR
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Werror"
)
endif
()
check_cxx_compiler_flag
(
-pedantic-errors HAVE_FLAG_PEDANTIC_ERRORS
)
if
(
HAVE_FLAG_PEDANTIC_ERRORS
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-pedantic-errors"
)
endif
()
# Add a debug definition so we can make decisions in the compilation
set
(
CMAKE_CXX_FLAGS_DEBUG
"
${
CMAKE_CXX_FLAGS_DEBUG
}
-DDEBUG"
)
# We relax the aliasing in release
check_cxx_compiler_flag
(
-fno-strict-aliasing HAVE_FLAG_NO_STRICT_ALIASING
)
if
(
HAVE_FLAG_NO_STRICT_ALIASING
)
set
(
CMAKE_CXX_FLAGS_RELEASE
"
${
CMAKE_CXX_FLAGS_RELEASE
}
-fno-strict-aliasing"
)
endif
()
# Set OS
# Set OS
if
(
${
CMAKE_SYSTEM_NAME
}
MATCHES
"Darwin"
)
if
(
${
CMAKE_SYSTEM_NAME
}
MATCHES
"Darwin"
)
...
...
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