-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCMakeLists.txt
executable file
·56 lines (46 loc) · 1.52 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
find_package(benchmark REQUIRED)
add_subdirectory(benchmarks)
# NOTE: add sub project for benchmarks here
if(ENABLE_BENCHMARK_ENTT)
add_subdirectory(benchmarks/entt-entities)
add_subdirectory(benchmarks/entt)
add_subdirectory(benchmarks/entt-extended)
endif()
if(ENABLE_BENCHMARK_ENTITYX)
add_subdirectory(benchmarks/entityx-entities)
add_subdirectory(benchmarks/entityx)
add_subdirectory(benchmarks/entityx-extended)
endif()
if(ENABLE_BENCHMARK_GINSENG)
add_subdirectory(benchmarks/ginseng-entities)
add_subdirectory(benchmarks/ginseng)
add_subdirectory(benchmarks/ginseng-extended)
endif()
if(ENABLE_BENCHMARK_MUSTACHE)
add_subdirectory(benchmarks/mustache-entities)
add_subdirectory(benchmarks/mustache)
add_subdirectory(benchmarks/mustache-extended)
endif()
if(ENABLE_BENCHMARK_OPENECS)
add_subdirectory(benchmarks/openecs-entities)
add_subdirectory(benchmarks/openecs)
add_subdirectory(benchmarks/openecs-extended)
endif()
if(ENABLE_BENCHMARK_FLECS)
add_subdirectory(benchmarks/flecs-entities)
add_subdirectory(benchmarks/flecs)
add_subdirectory(benchmarks/flecs-extended)
endif()
if(ENABLE_BENCHMARK_PICO_ECS)
add_subdirectory(benchmarks/pico-ecs-entities)
add_subdirectory(benchmarks/pico-ecs)
add_subdirectory(benchmarks/pico-ecs-extended)
endif()
if(ENABLE_BENCHMARK_GAIA_ECS)
add_subdirectory(benchmarks/gaia-ecs-entities)
add_subdirectory(benchmarks/gaia-ecs)
add_subdirectory(benchmarks/gaia-ecs-extended)
endif()
if(ENABLE_BENCHMARK_OOP)
add_subdirectory(benchmarks/oop)
endif()