diff --git a/cmake/cpp_header_template b/cmake/tmpl/cpp_header_template similarity index 100% rename from cmake/cpp_header_template rename to cmake/tmpl/cpp_header_template diff --git a/cmake/cpp_source_template b/cmake/tmpl/cpp_source_template similarity index 100% rename from cmake/cpp_source_template rename to cmake/tmpl/cpp_source_template diff --git a/cmake/legate_gen_library.in b/cmake/tmpl/create-legate-library.in similarity index 100% rename from cmake/legate_gen_library.in rename to cmake/tmpl/create-legate-library.in diff --git a/cmake/python_template b/cmake/tmpl/python_template similarity index 100% rename from cmake/python_template rename to cmake/tmpl/python_template diff --git a/legate_core_cpp.cmake b/legate_core_cpp.cmake index 91518e994..e84b6f055 100644 --- a/legate_core_cpp.cmake +++ b/legate_core_cpp.cmake @@ -449,12 +449,12 @@ Imported Targets: ]=]) file(READ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/legate_helper_functions.cmake helper_functions) -file(READ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cpp_source_template cpp_source_template) -file(READ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cpp_header_template cpp_header_template) -file(READ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/python_template python_template) +file(READ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/tmpl/cpp_source_template cpp_source_template) +file(READ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/tmpl/cpp_header_template cpp_header_template) +file(READ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/tmpl/python_template python_template) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/legate_gen_library.in - ${CMAKE_CURRENT_SOURCE_DIR}/legate_gen_library +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/tmpl/create-legate-library.in + ${CMAKE_CURRENT_SOURCE_DIR}/create-legate-library FILE_PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ @ONLY) diff --git a/setup.py b/setup.py index a0e2dd68c..65007097e 100755 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ "lgpatch = legate.lgpatch:main", ], }, - scripts=["bind.sh", "gen_library"], + scripts=["bind.sh", "create-legate-library"], cmdclass=versioneer.get_cmdclass(), install_requires=["numpy>=1.22"], zip_safe=False,