@@ -91,11 +91,11 @@ def _create_match_list(self) -> List[str]:
91
91
lib = [
92
92
"lib" ,
93
93
"lib/cmake" ,
94
- "lib/cmake/unified-memory-framework " ,
95
- "lib/cmake/unified-memory-framework/unified-memory-framework -config-version.cmake" ,
96
- "lib/cmake/unified-memory-framework/unified-memory-framework -config.cmake" ,
97
- f"lib/cmake/unified-memory-framework/unified-memory-framework -targets-{ self .build_type } .cmake" ,
98
- "lib/cmake/unified-memory-framework/unified-memory-framework -targets.cmake" ,
94
+ "lib/cmake/umf " ,
95
+ "lib/cmake/umf/umf -config-version.cmake" ,
96
+ "lib/cmake/umf/umf -config.cmake" ,
97
+ f"lib/cmake/umf/umf -targets-{ self .build_type } .cmake" ,
98
+ "lib/cmake/umf/umf -targets.cmake" ,
99
99
]
100
100
for pool in self .pools :
101
101
lib .append (f"lib/{ lib_prefix } { pool } .{ lib_ext_static } " )
@@ -109,18 +109,18 @@ def _create_match_list(self) -> List[str]:
109
109
share = [
110
110
"share" ,
111
111
"share/doc" ,
112
- "share/doc/unified-memory-framework " ,
112
+ "share/doc/umf " ,
113
113
]
114
114
examples_dir = Path (self .workspace_dir , "examples" )
115
115
examples_dirs = [dir for dir in examples_dir .iterdir () if dir .is_dir ()]
116
116
examples = [
117
- f"share/doc/unified-memory-framework /examples/{ file_path .name } "
117
+ f"share/doc/umf /examples/{ file_path .name } "
118
118
for example_dir in examples_dirs
119
119
for file_path in example_dir .iterdir ()
120
120
]
121
- examples .insert (0 , "share/doc/unified-memory-framework /examples" )
121
+ examples .insert (0 , "share/doc/umf /examples" )
122
122
share .extend (examples )
123
- share .append ("share/doc/unified-memory-framework /LICENSE.TXT" )
123
+ share .append ("share/doc/umf /LICENSE.TXT" )
124
124
125
125
all_files = bin + include + lib + share
126
126
if platform .system () == "Windows" :
0 commit comments