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
a0018c39
Commit
a0018c39
authored
Aug 29, 2018
by
Michael "Croydon" Keck
Committed by
Dominic Hamon
Aug 29, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore 32 bit build option when using MSVC (#638)
parent
8688c5c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
CMakeLists.txt
CMakeLists.txt
+5
-1
No files found.
CMakeLists.txt
View file @
a0018c39
...
@@ -16,7 +16,11 @@ option(BENCHMARK_ENABLE_TESTING "Enable testing of the benchmark library." ON)
...
@@ -16,7 +16,11 @@ option(BENCHMARK_ENABLE_TESTING "Enable testing of the benchmark library." ON)
option
(
BENCHMARK_ENABLE_EXCEPTIONS
"Enable the use of exceptions in the benchmark library."
ON
)
option
(
BENCHMARK_ENABLE_EXCEPTIONS
"Enable the use of exceptions in the benchmark library."
ON
)
option
(
BENCHMARK_ENABLE_LTO
"Enable link time optimisation of the benchmark library."
OFF
)
option
(
BENCHMARK_ENABLE_LTO
"Enable link time optimisation of the benchmark library."
OFF
)
option
(
BENCHMARK_USE_LIBCXX
"Build and test using libc++ as the standard library."
OFF
)
option
(
BENCHMARK_USE_LIBCXX
"Build and test using libc++ as the standard library."
OFF
)
option
(
BENCHMARK_BUILD_32_BITS
"Build a 32 bit version of the library."
OFF
)
if
(
NOT MSVC
)
option
(
BENCHMARK_BUILD_32_BITS
"Build a 32 bit version of the library."
OFF
)
else
()
set
(
BENCHMARK_BUILD_32_BITS OFF CACHE BOOL
"Build a 32 bit version of the library - unsupported when using MSVC)"
FORCE
)
endif
()
option
(
BENCHMARK_ENABLE_INSTALL
"Enable installation of benchmark. (Projects embedding benchmark may want to turn this OFF.)"
ON
)
option
(
BENCHMARK_ENABLE_INSTALL
"Enable installation of benchmark. (Projects embedding benchmark may want to turn this OFF.)"
ON
)
# Allow unmet dependencies to be met using CMake's ExternalProject mechanics, which
# Allow unmet dependencies to be met using CMake's ExternalProject mechanics, which
...
...
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