mirror of https://github.com/status-im/evmc.git
Build tests with C++11 in not specified otherwise
This commit is contained in:
parent
83d828cfce
commit
8108f04b7a
|
@ -5,6 +5,11 @@
|
|||
hunter_add_package(GTest)
|
||||
find_package(GTest CONFIG REQUIRED)
|
||||
|
||||
if(NOT CMAKE_CXX_STANDARD)
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
endif()
|
||||
|
||||
add_subdirectory(integration)
|
||||
add_subdirectory(unittests)
|
||||
add_subdirectory(vmtester)
|
||||
|
|
Loading…
Reference in New Issue