Commit 12c978c5 by Michał Janiszewski Committed by Roman Lebedev

Mark CMake project as C++-only (#681)

This will make CMake skip all the checks for C compiler.
parent b988639f
...@@ -12,7 +12,7 @@ foreach(p ...@@ -12,7 +12,7 @@ foreach(p
endif() endif()
endforeach() endforeach()
project (benchmark) project (benchmark CXX)
option(BENCHMARK_ENABLE_TESTING "Enable testing of the benchmark library." ON) 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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment