-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.gn
More file actions
81 lines (78 loc) · 1.57 KB
/
Copy pathBUILD.gn
File metadata and controls
81 lines (78 loc) · 1.57 KB
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
# Copyright 2026 Alex313031
group("cryocalc_all") {
public_deps = [
":cryocalc",
"osinfo:osinfo_dll",
"src/logging:mini_logger_all",
]
}
executable("cryocalc") {
precompiled_header = "src/framework.h"
precompiled_source = "src/pch.cc"
configs += [
":cryocalc_config",
"src/logging:mini_logger_config",
]
sources = [
"src/constants.h",
"src/controls.cc",
"src/controls.h",
"src/converters.cc",
"src/converters.h",
"src/cryocalc.cc",
"src/cryocalc.h",
"src/framework.h",
"src/globals.h",
"src/monitor_window.h",
"src/monitor_window.cc",
"src/osinfo_window.h",
"src/osinfo_window.cc",
"src/painting.h",
"src/painting.cc",
"src/resource.h",
"src/resource.rc",
"src/strings.h",
"src/strings.cc",
"src/stress/common.h",
"src/stress/common.cc",
"src/stress/cpu.h",
"src/stress/cpu.cc",
"src/stress/io.h",
"src/stress/io.cc",
"src/stress/mem.h",
"src/stress/mem.cc",
"src/stress/reporting.h",
"src/stress/reporting.cc",
"src/stress/stress.h",
"src/stress/stress.cc",
"src/utils.cc",
"src/utils.h",
"src/ui_utils.cc",
"src/ui_utils.h",
"src/version.h",
]
deps = [
"osinfo:osinfo",
"src/logging:mini_logger",
]
public_deps = [
"osinfo:osinfo_dll",
]
}
config("cryocalc_config") {
include_dirs = [
"src",
"osinfo",
]
# Track unused functions
cflags = [ "-Wunused-function" ]
libs = [
"kernel32",
"user32",
"shell32",
"comctl32",
"comdlg32",
"gdi32",
"winmm",
]
}