forked from desktop-app/cmake_helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options_win.cmake
95 lines (88 loc) · 2.08 KB
/
options_win.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
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
# This file is part of Desktop App Toolkit,
# a set of libraries for developing nice desktop applications.
#
# For license and copyright information please follow this link:
# https://github.com/desktop-app/legal/blob/master/LEGAL
target_compile_definitions(common_options
INTERFACE
WIN32
_WINDOWS
_SCL_SECURE_NO_WARNINGS
NOMINMAX
UNICODE
_UNICODE
)
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
target_compile_options(common_options
INTERFACE
/permissive-
# /Qspectre
/W1
/WX
/MP # Enable multi process build.
/EHsc # Catch C++ exceptions only, extern C functions never throw a C++ exception.
/w14834 # [[nodiscard]]
/w15038 # wrong initialization order
/w14265 # class has virtual functions, but destructor is not virtual
/wd4068 # Disable "warning C4068: unknown pragma"
/Zc:wchar_t- # don't tread wchar_t as builtin type
/Zi
)
target_link_options(common_options
INTERFACE
$<IF:$<CONFIG:Debug>,/NODEFAULTLIB:LIBCMT,/DEBUG;/OPT:REF>
)
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
target_compile_definitions(common_options
INTERFACE
WINVER=0x0601
_WIN32_WINNT=0x0601
)
target_compile_options(common_options
INTERFACE
-fpermissive
)
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
target_compile_options(common_options
INTERFACE
-fms-extensions
-femulated-tls
)
target_link_options(common_options
INTERFACE
-fuse-ld=lld
)
endif()
endif()
target_link_libraries(common_options
INTERFACE
winmm
imm32
ws2_32
kernel32
user32
gdi32
winspool
comdlg32
advapi32
shell32
ole32
oleaut32
uuid
odbc32
odbccp32
Shlwapi
Iphlpapi
Gdiplus
Strmiids
Netapi32
Userenv
Version
Dwmapi
Wtsapi32
Rstrtmgr
Crypt32
)
if (build_winstore)
target_compile_definitions(common_options INTERFACE OS_WIN_STORE)
endif()