summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2018-06-13 10:34:54 -0600
committerMark Lobodzinski <mark@lunarg.com>2018-06-14 08:40:39 -0600
commitcb594cc883d4836fb360a4e99c01786eb3e4d351 (patch)
tree1d594412c490092c935e9d867d9afa0fd1b3ac08
parenteb9397bb9c830f633559b7835ca334db9c437b23 (diff)
downloadVulkan-Tools-cb594cc883d4836fb360a4e99c01786eb3e4d351.tar.gz
Vulkan-Tools-cb594cc883d4836fb360a4e99c01786eb3e4d351.tar.bz2
Vulkan-Tools-cb594cc883d4836fb360a4e99c01786eb3e4d351.zip
scripts: Rename helper file generator script
-rw-r--r--icd/CMakeLists.txt2
-rw-r--r--scripts/kvt_genvk.py2
-rw-r--r--scripts/vulkan_tools_helper_file_generator.py (renamed from scripts/helper_file_generator.py)2
3 files changed, 3 insertions, 3 deletions
diff --git a/icd/CMakeLists.txt b/icd/CMakeLists.txt
index e30cab87..a98b5cb5 100644
--- a/icd/CMakeLists.txt
+++ b/icd/CMakeLists.txt
@@ -107,7 +107,7 @@ add_custom_target(icd_generate_helper_files DEPENDS
vk_typemap_helper.h
)
set_target_properties(icd_generate_helper_files PROPERTIES FOLDER ${TOOLS_TARGET_FOLDER})
-run_vk_xml_generate(helper_file_generator.py vk_typemap_helper.h)
+run_vk_xml_generate(vulkan_tools_helper_file_generator.py vk_typemap_helper.h)
# For ICD with a direct dependency on a project with the same name, use it.
if (NOT (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR))
diff --git a/scripts/kvt_genvk.py b/scripts/kvt_genvk.py
index 26367686..428d845d 100644
--- a/scripts/kvt_genvk.py
+++ b/scripts/kvt_genvk.py
@@ -20,7 +20,7 @@ from generator import write
from cgenerator import CGeneratorOptions, COutputGenerator
# Generator Modifications
from mock_icd_generator import MockICDGeneratorOptions, MockICDOutputGenerator
-from helper_file_generator import HelperFileOutputGenerator, HelperFileOutputGeneratorOptions
+from vulkan_tools_helper_file_generator import HelperFileOutputGenerator, HelperFileOutputGeneratorOptions
# Simple timer functions
startTime = None
diff --git a/scripts/helper_file_generator.py b/scripts/vulkan_tools_helper_file_generator.py
index 003e7a51..e5ddcb43 100644
--- a/scripts/helper_file_generator.py
+++ b/scripts/vulkan_tools_helper_file_generator.py
@@ -110,7 +110,7 @@ class HelperFileOutputGenerator(OutputGenerator):
self.library_name = genOpts.library_name
# File Comment
file_comment = '// *** THIS FILE IS GENERATED - DO NOT EDIT ***\n'
- file_comment += '// See helper_file_generator.py for modifications\n'
+ file_comment += '// See vulkan_tools_helper_file_generator.py for modifications\n'
write(file_comment, file=self.outFile)
# Copyright Notice
copyright = ''