From 2bc3f9feddc9be5f2278a99fb88a92a843238c50 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Fri, 24 Jan 2020 07:31:51 +0200 Subject: [PATCH] Including when compiling Core seems to be unnecessary since we already include earlier --- src/core/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 391784d..677e6c2 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,4 +1,3 @@ ## Astaroth Core add_library(astaroth_core STATIC device.cc node.cc astaroth.cc) -target_include_directories(astaroth_core PRIVATE ${CUDA_INCLUDE_DIRS}) target_link_libraries(astaroth_core astaroth_utils astaroth_kernels cudart)