Skip to content
Snippets Groups Projects
Commit 2e77de80 authored by Abhinav Singh's avatar Abhinav Singh
Browse files

Fixing DCPSE update

parent 608e68fb
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,11 @@ add_executable(io main.cpp
../../openfpm_devices/src/Memleak_check.cpp
../../openfpm_devices/src/memory/PtrMemory.cpp)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
target_compile_options(io PRIVATE "-Wno-undefined-var-template")
target_compile_options(io PRIVATE "-Wno-macro-redefined")
endif()
if ( CMAKE_COMPILER_IS_GNUCC )
target_compile_options(io PRIVATE "-Wno-deprecated-declarations")
if (TEST_COVERAGE)
......@@ -19,6 +24,8 @@ if ( CMAKE_COMPILER_IS_GNUCC )
endif()
endif()
###########################
if (CUDA_FOUND)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment