File tree Expand file tree Collapse file tree 8 files changed +28
-19
lines changed
layer_gpu_timeline/source Expand file tree Collapse file tree 8 files changed +28
-19
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ target_include_directories(
53
53
54
54
target_include_directories(
55
55
${VK_LAYER} SYSTEM PRIVATE
56
- ../../source_third_party/khronos/vulkan/include/)
56
+ ../../source_third_party/khronos/vulkan/include/
57
+ ../../source_third_party/khronos/vulkan-utilities/include/)
57
58
58
59
lgl_set_build_options(${VK_LAYER})
59
60
Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ target_include_directories(
54
54
55
55
target_include_directories (
56
56
${VK_LAYER} SYSTEM PRIVATE
57
- ../../source_third_party/khronos/vulkan/include/ )
57
+ ../../source_third_party/khronos/vulkan/include/
58
+ ../../source_third_party/khronos/vulkan-utilities/include/ )
58
59
59
60
lgl_set_build_options (${VK_LAYER} )
60
61
Original file line number Diff line number Diff line change @@ -62,7 +62,8 @@ target_include_directories(
62
62
target_include_directories (
63
63
${VK_LAYER} SYSTEM PRIVATE
64
64
../../source_third_party/
65
- ../../source_third_party/khronos/vulkan/include/ )
65
+ ../../source_third_party/khronos/vulkan/include/
66
+ ../../source_third_party/khronos/vulkan-utilities/include/ )
66
67
67
68
lgl_set_build_options (${VK_LAYER} )
68
69
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ target_include_directories(
66
66
${VK_LAYER} SYSTEM PRIVATE
67
67
../../source_third_party/
68
68
../../source_third_party/khronos/vulkan/include/
69
+ ../../source_third_party/khronos/vulkan-utilities/include/
69
70
../../source_third_party/protopuf/include/ )
70
71
71
72
lgl_set_build_options (${VK_LAYER} )
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: MIT
2
2
# -----------------------------------------------------------------------------
3
- # Copyright (c) 2024 Arm Limited
3
+ # Copyright (c) 2024-2025 Arm Limited
4
4
#
5
5
# Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
# of this software and associated documentation files (the "Software"), to
@@ -33,12 +33,13 @@ add_library(
33
33
target_include_directories (
34
34
${LIB_BINARY} PRIVATE
35
35
../
36
- ../../source_third_party/khronos/vulkan/include/ )
36
+ ../../source_third_party/khronos/vulkan/include/
37
+ ../../source_third_party/khronos/vulkan-utilities/include/ )
37
38
38
39
lgl_set_build_options (${LIB_BINARY} )
39
40
40
41
if (${LGL_UNITTEST} )
41
42
add_subdirectory (test )
42
43
endif ()
43
44
44
- add_clang_tools ()
45
+ add_clang_tools ()
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: MIT
2
2
# -----------------------------------------------------------------------------
3
- # Copyright (c) 2024 Arm Limited
3
+ # Copyright (c) 2024-2025 Arm Limited
4
4
#
5
5
# Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
# of this software and associated documentation files (the "Software"), to
@@ -34,6 +34,7 @@ target_include_directories(
34
34
../../
35
35
../../../source_third_party/
36
36
../../../source_third_party/khronos/vulkan/include
37
+ ../../source_third_party/khronos/vulkan-utilities/include/
37
38
${gtest_SOURCE_DIR} /include )
38
39
39
40
target_link_libraries (
@@ -76,4 +77,4 @@ install(
76
77
TARGETS ${TEST_BINARY}
77
78
DESTINATION bin )
78
79
79
- add_clang_tools ()
80
+ add_clang_tools ()
Original file line number Diff line number Diff line change @@ -28,7 +28,13 @@ add_library(
28
28
device_functions.cpp
29
29
device_query.cpp
30
30
instance_functions.cpp
31
- manual_functions.cpp )
31
+ manual_functions.cpp
32
+ ../../source_third_party/khronos/vulkan-utilities/src/vulkan/vk_safe_struct_core.cpp
33
+ ../../source_third_party/khronos/vulkan-utilities/src/vulkan/vk_safe_struct_ext.cpp
34
+ ../../source_third_party/khronos/vulkan-utilities/src/vulkan/vk_safe_struct_khr.cpp
35
+ ../../source_third_party/khronos/vulkan-utilities/src/vulkan/vk_safe_struct_manual.cpp
36
+ ../../source_third_party/khronos/vulkan-utilities/src/vulkan/vk_safe_struct_utils.cpp
37
+ ../../source_third_party/khronos/vulkan-utilities/src/vulkan/vk_safe_struct_vendor.cpp )
32
38
33
39
target_include_directories (
34
40
${LIB_BINARY} PRIVATE
@@ -41,8 +47,9 @@ target_include_directories(
41
47
${LIB_BINARY} SYSTEM PRIVATE
42
48
../
43
49
../../source_third_party/
44
- ../../source_third_party/khronos/vulkan/include/ )
50
+ ../../source_third_party/khronos/vulkan/include/
51
+ ../../source_third_party/khronos/vulkan-utilities/include/ )
45
52
46
53
lgl_set_build_options (${LIB_BINARY} )
47
54
48
- add_clang_tools ()
55
+ add_clang_tools ()
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: MIT
2
2
# -----------------------------------------------------------------------------
3
- # Copyright (c) 2024 Arm Limited
3
+ # Copyright (c) 2024-2025 Arm Limited
4
4
#
5
5
# Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
# of this software and associated documentation files (the "Software"), to
@@ -35,13 +35,9 @@ target_include_directories(
35
35
${LIB_BINARY} PRIVATE
36
36
../
37
37
../../source_third_party/
38
- ../../source_third_party/khronos/vulkan/include )
38
+ ../../source_third_party/khronos/vulkan/include
39
+ ../../source_third_party/khronos/vulkan-utilities/include/ )
39
40
40
41
lgl_set_build_options (${LIB_BINARY} )
41
42
42
- # No unit tests for this module yet
43
- #if(${LGL_UNITTEST})
44
- # add_subdirectory(test)
45
- #endif()
46
-
47
- add_clang_tools ()
43
+ add_clang_tools ()
You can’t perform that action at this time.
0 commit comments