-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhexstringconvertbenchmark.qbs
More file actions
46 lines (43 loc) · 1.17 KB
/
hexstringconvertbenchmark.qbs
File metadata and controls
46 lines (43 loc) · 1.17 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
import qbs 1.0
Project {
CppApplication {
name: "hexstringconvertbenchmark"
files: [
"convert_functions.cpp",
"random_data_generator.cpp",
"benchmarks.convert_functions.cpp",
"main.cpp"
]
cpp.optimization: "ludicrousSpeed"
cpp.cxxLanguageVersion: "c++17"
Properties
{
condition: qbs.targetOS.contains("windows")
cpp.includePaths: ["C:/Software/boost_1_68_0/"]
}
Properties
{
condition: qbs.targetOS.contains("linux")
cpp.commonCompilerFlags: ["-pthread"]
}
}
CppApplication {
name: "tests-generator"
files: [
"random_data_generator.cpp",
"tests.random_data_generator.cpp",
"matcher.hexadecimal_digit.cpp"
]
cpp.optimization: "ludicrousSpeed"
cpp.cxxLanguageVersion: "c++17"
}
CppApplication {
name: "tests"
files: [
"convert_functions.cpp",
"tests.convert_functions.cpp"
]
cpp.optimization: "ludicrousSpeed"
cpp.cxxLanguageVersion: "c++17"
}
}