From: Karl Ljungkvist Date: Tue, 17 May 2016 15:42:49 +0000 (-0500) Subject: fix warning by not using dot in target name X-Git-Tag: v8.5.0-rc1~1011^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab1ac6572199fbdbea7772bead769cbb41aaacd5;p=dealii.git fix warning by not using dot in target name --- diff --git a/cmake/macros/macro_deal_ii_add_library.cmake b/cmake/macros/macro_deal_ii_add_library.cmake index fb384c5366..ccc97fe06d 100644 --- a/cmake/macros/macro_deal_ii_add_library.cmake +++ b/cmake/macros/macro_deal_ii_add_library.cmake @@ -52,7 +52,7 @@ MACRO(DEAL_II_ADD_LIBRARY _library) # Cuda specific target setup: # IF(DEAL_II_WITH_CUDA) - CUDA_WRAP_SRCS(${_library}.${_build_lowercase} + CUDA_WRAP_SRCS(${_library}_${_build_lowercase} OBJ _generated_cuda_files ${ARGN} SHARED )