Skip to content

Commit

Permalink
Be more precise with lib names
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Howe <[email protected]>
  • Loading branch information
bmhowe23 committed Jan 18, 2025
1 parent 35c14df commit 3545bdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ __pycache__/
docs/sphinx/_doxygen
docs/sphinx/_mdgen
**/_build/*
**/_skbuild/*
_version.py

# third party integrations
Expand Down
4 changes: 2 additions & 2 deletions libs/core/include/cuda-qx/core/library_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ inline static std::string getCUDAQXLibraryPath(const CudaQXLibType lib) {
data.libName = [&]() -> std::string {
switch (lib) {
case CudaQXLibType::QEC:
return "cudaq-qec";
return "/libcudaq-qec.";
case CudaQXLibType::Solvers:
return "cudaq-solvers";
return "/libcudaq-solvers.";
}
return "UNKNOWN";
}();
Expand Down

0 comments on commit 3545bdb

Please sign in to comment.