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

Revive cuda windows #1

Open
wants to merge 10 commits into
base: native_CUDA_Cmake_support
Choose a base branch
from
Open
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,11 @@ setup_conan()

# If we do not set them with a space CMake fails afterwards if nothing is set for this vars!
set(AER_LINKER_FLAGS " ")
set(AER_COMPILER_FLAGS " ")
if(APPLE OR UNIX)
set(AER_COMPILER_FLAGS " ")
elseif(MSVC)
set(AER_COMPILER_FLAGS " /bigobj")
endif ()

message(STATUS "Looking for OpenMP support...")
if(APPLE)
Expand Down
Loading