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