Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cmake] Fix double installation of nvq++ libs. #2441

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion cmake/AddCUDAQ.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function(add_cudaq_dialect_doc dialect dialect_namespace)
endfunction()

function(add_cudaq_library name)
add_mlir_library(${ARGV})
add_mlir_library(${ARGV} DISABLE_INSTALL)
add_cudaq_library_install(${name})
endfunction()

Expand Down
Loading