Skip to content

Commit e5713e6

Browse files
authored
Merge pull request #370 from PatKamin/align-install-locations
Update project name
2 parents 31e1ac3 + d7d493e commit e5713e6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
cmake_minimum_required(VERSION 3.14.0 FATAL_ERROR)
66
project(
7-
unified-memory-framework
7+
umf
88
VERSION 0.1.0
99
LANGUAGES C)
1010

test/test_installation.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ def _create_match_list(self) -> List[str]:
9191
lib = [
9292
"lib",
9393
"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",
9999
]
100100
for pool in self.pools:
101101
lib.append(f"lib/{lib_prefix}{pool}.{lib_ext_static}")
@@ -109,18 +109,18 @@ def _create_match_list(self) -> List[str]:
109109
share = [
110110
"share",
111111
"share/doc",
112-
"share/doc/unified-memory-framework",
112+
"share/doc/umf",
113113
]
114114
examples_dir = Path(self.workspace_dir, "examples")
115115
examples_dirs = [dir for dir in examples_dir.iterdir() if dir.is_dir()]
116116
examples = [
117-
f"share/doc/unified-memory-framework/examples/{file_path.name}"
117+
f"share/doc/umf/examples/{file_path.name}"
118118
for example_dir in examples_dirs
119119
for file_path in example_dir.iterdir()
120120
]
121-
examples.insert(0, "share/doc/unified-memory-framework/examples")
121+
examples.insert(0, "share/doc/umf/examples")
122122
share.extend(examples)
123-
share.append("share/doc/unified-memory-framework/LICENSE.TXT")
123+
share.append("share/doc/umf/LICENSE.TXT")
124124

125125
all_files = bin + include + lib + share
126126
if platform.system() == "Windows":

0 commit comments

Comments
 (0)