aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Ramos <juan@lunarg.com>2023-09-22 12:52:13 -0600
committerJuan Ramos <114601453+juan-lunarg@users.noreply.github.com>2023-09-22 13:31:13 -0600
commitc92c1e0654045eccca6a7f2559102d5264ee938f (patch)
tree0b16a9587cac6933b86dd7e07c6dd33d548dd819
parent9616098f617c4a53ecb72a1456bb229989e2d0e4 (diff)
downloadusermoji-c92c1e0654045eccca6a7f2559102d5264ee938f.tar.xz
cmake: Remove generate_icd_files
Does nothing
-rw-r--r--icd/CMakeLists.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/icd/CMakeLists.txt b/icd/CMakeLists.txt
index f36849de..1183c074 100644
--- a/icd/CMakeLists.txt
+++ b/icd/CMakeLists.txt
@@ -45,13 +45,6 @@ else()
message(FATAL_ERROR "Unsupported Platform!")
endif()
-add_custom_target(generate_icd_files
- DEPENDS mock_icd.cpp ${GENERATED}/function_definitions.h ${GENERATED}/function_declarations.h
-)
-set_target_properties(
- generate_icd_files PROPERTIES FOLDER ${TOOLS_HELPER_FOLDER}
-)
-
add_library(VkICD_mock_icd MODULE)
target_sources(VkICD_mock_icd PRIVATE mock_icd.cpp)
target_link_libraries(VkICD_mock_icd PRIVATE Vulkan::Headers)