-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathCompilerFeatures.cmake
47 lines (38 loc) · 1.53 KB
/
CompilerFeatures.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# TODO make these functional tests
# shared_ptr/unique_ptr
# perfect forwarding
# lambdas
include(CheckCXXCompilerFlag)
if(NOT MSVC)
check_cxx_compiler_flag("-std=c++11" COMPILER_SUPPORTS_CXX11)
check_cxx_compiler_flag("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
endif()
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_REQUIRED_FLAGS "-std=c++11")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_REQUIRED_FLAGS "-std=c++0x")
elseif(MSVC)
set(CMAKE_REQUIRED_FLAGS)
endif()
include(CheckCXXSourceCompiles)
function(check_cxx_type_exists TYPE HEADER VAR)
check_cxx_source_compiles("#include <${HEADER}>\n int main() { ${TYPE} test; return 0;}" ${VAR})
set(${VAR} ${${VAR}} PARENT_SCOPE)
endfunction()
check_cxx_type_exists("std::shared_ptr<int>" "memory" OSVR_HAVE_STD_SHARED_PTR)
check_cxx_type_exists("std::unique_ptr<int>" "memory" OSVR_HAVE_STD_UNIQUE_PTR)
#include(CheckCXXSymbolExists)
#check_cxx_symbol_exists("std::shared_ptr<int>" "memory" OSVR_HAVE_STD_SHARED_PTR)
#check_cxx_symbol_exists("std::unique_ptr<int>" "memory" OSVR_HAVE_STD_UNIQUE_PTR)
if(OSVR_HAVE_STD_SHARED_PTR AND OSVR_HAVE_STD_UNIQUE_PTR)
set(OSVR_CXX11_FLAGS ${CMAKE_REQUIRED_FLAGS})
add_library(osvr_cxx11_flags INTERFACE)
target_compile_options(osvr_cxx11_flags INTERFACE ${CMAKE_REQUIRED_FLAGS})
else()
message(FATAL_ERROR "Sorry, your compiler does not support the C++11 features required to compile the library core.")
endif()
if(WIN32)
include(CheckIncludeFileCXX)
check_include_file_cxx(codecvt OSVR_HAVE_CODECVT)
endif()
set(CMAKE_REQUIRED_FLAGS)