-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathCMakeLists.txt
113 lines (95 loc) · 3.85 KB
/
CMakeLists.txt
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
cmake_minimum_required(VERSION 3.16)
if(NOT DEFINED PROJECT_NAME)
project(cppwinrt-tests)
set(STANDALONE_TESTING 1)
include(CTest)
if(NOT BUILD_TESTING)
message(NOTICE "BUILD_TESTING is OFF, nothing to do.")
return()
endif()
endif()
# The tests use newer C++ features.
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
include_directories("${CMAKE_CURRENT_SOURCE_DIR}")
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../cppwinrt")
function(TestIsX64 OUTPUT_VARNAME)
include(CheckCXXSourceCompiles)
check_cxx_source_compiles("
#if !defined(__x86_64__) && !defined(_M_X64)
# error Not x86_64
#endif
int main() {}
" ${OUTPUT_VARNAME})
endfunction()
TestIsX64(TARGET_IS_X64)
if(TARGET_IS_X64)
add_compile_options(-mcx16)
endif()
# Some tests requires windowsnumerics.impl.h, but mingw-w64 didn't have this
# header until very recently. In case it is not present, download a copy if
# DOWNLOAD_WINDOWSNUMERICS is true, otherwise skip the tests which depend on
# this header.
function(TestHasWindowsnumerics OUTPUT_VARNAME)
include(CheckCXXSourceCompiles)
check_cxx_source_compiles("
#define _WINDOWS_NUMERICS_NAMESPACE_ winrt::Windows::Foundation::Numerics
#define _WINDOWS_NUMERICS_BEGIN_NAMESPACE_ namespace winrt::Windows::Foundation::Numerics
#define _WINDOWS_NUMERICS_END_NAMESPACE_
#include <windowsnumerics.impl.h>
int main() {}
" ${OUTPUT_VARNAME})
endfunction()
TestHasWindowsnumerics(HAS_WINDOWSNUMERICS)
set(DOWNLOAD_WINDOWSNUMERICS FALSE CACHE BOOL "Whether to download a copy of mingw-w64's windowsnumerics.impl.h if not available.")
if(NOT HAS_WINDOWSNUMERICS AND DOWNLOAD_WINDOWSNUMERICS)
file(
DOWNLOAD https://github.com/mingw-w64/mingw-w64/raw/2b6272b31132e156dd1fc3722c1aa96b705a90dd/mingw-w64-headers/include/windowsnumerics.impl.h
"${CMAKE_CURRENT_BINARY_DIR}/windowsnumerics/windowsnumerics.impl.h"
EXPECTED_HASH SHA256=aff42491e57583c8ad8ca8e71d417a553bd1215ee9a71378679400ecded4b1ab
SHOW_PROGRESS
)
include_directories("${CMAKE_CURRENT_BINARY_DIR}/windowsnumerics")
set(HAS_WINDOWSNUMERICS TRUE)
message(STATUS "Using windowsnumerics.impl.h downloaded from mingw-w64")
endif()
if(STANDALONE_TESTING)
add_custom_target(build-cppwinrt-projection)
set(CPPWINRT_PROJECTION_INCLUDE_DIR "" CACHE PATH "Include path for the C++/WinRT projection headers")
if(NOT CPPWINRT_PROJECTION_INCLUDE_DIR)
message(FATAL_ERROR "CPPWINRT_PROJECTION_INCLUDE_DIR is not specified.")
endif()
else()
set(CPPWINRT_PROJECTION_INCLUDE_DIR "${CMAKE_CURRENT_BINARY_DIR}/cppwinrt")
add_custom_command(
OUTPUT
"${CMAKE_CURRENT_BINARY_DIR}/cppwinrt/winrt/base.h"
COMMAND cppwinrt -input local -output "${CPPWINRT_PROJECTION_INCLUDE_DIR}" -verbose
DEPENDS
cppwinrt
VERBATIM
)
add_custom_target(build-cppwinrt-projection
DEPENDS
"${CMAKE_CURRENT_BINARY_DIR}/cppwinrt/winrt/base.h"
)
endif()
include_directories("${CPPWINRT_PROJECTION_INCLUDE_DIR}")
set(ENABLE_TEST_SANITIZERS FALSE CACHE BOOL "Enable ASan and UBSan for the tests.")
if(ENABLE_TEST_SANITIZERS)
# Disable the 'vptr' check because it seems to produce false-positives when using COM classes.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined,address -fno-sanitize=vptr")
endif()
set(USE_ANSI_COLOR FALSE CACHE BOOL "Enable ANSI colour output for Catch2 test runner.")
if(USE_ANSI_COLOR)
add_compile_definitions(CATCH_CONFIG_COLOUR_ANSI)
set(TEST_COLOR_ARG "--use-colour yes")
endif()
set(SKIP_LARGE_PCH FALSE CACHE BOOL "Skip building large precompiled headers.")
add_subdirectory(test)
add_subdirectory(test_cpp20)
add_subdirectory(test_cpp20_no_sourcelocation)
if(HAS_WINDOWSNUMERICS)
add_subdirectory(old_tests)
endif()