Skip to content

Commit c27d76a

Browse files
committed
Remove symlinks
1 parent cd7a6d2 commit c27d76a

File tree

18 files changed

+10
-25
lines changed

18 files changed

+10
-25
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,4 @@ target_include_directories(device PRIVATE .
7070
algorithms/${BACKEND_FOLDER}
7171
submodules)
7272

73+
target_include_directories(device INTERFACE .)

examples/basic/.clang-format

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/basic/.clang-tidy

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/basic/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ project(examples)
77

88
include(../cmake/common_options.cmake)
99

10-
add_subdirectory(root)
10+
add_subdirectory(../.. root)
1111
add_executable(basic basic.cpp)
12-
target_include_directories(basic PUBLIC root)
1312
target_link_libraries(basic device)
1413
target_compile_definitions(basic PRIVATE REAL_SIZE=${REAL_SIZE_IN_BYTES})
1514

examples/basic/root

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/jacobi/.clang-format

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/jacobi/.clang-tidy

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/jacobi/CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ option(WITH_TESTS "build with unit test" OFF)
1010
option(WITH_MPI "build with MPI support" ON)
1111

1212
find_package(yaml-cpp REQUIRED 0.7.0)
13-
add_subdirectory(root)
13+
add_subdirectory(../.. root)
1414
add_subdirectory(src/gpu/kernels)
1515

1616
if (WITH_MPI)
@@ -49,7 +49,6 @@ if (${DEVICE_BACKEND} STREQUAL "hipsycl")
4949
endif()
5050

5151
target_include_directories(solver PUBLIC src
52-
root
5352
${__MPI_INCLUDES})
5453

5554
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.13")
@@ -90,8 +89,7 @@ if (WITH_TESTS)
9089
target_link_options(tests PUBLIC ${__MPI_LINK_FLAGS})
9190
endif()
9291

93-
target_include_directories(tests PRIVATE root
94-
${GTEST_INCLUDE_DIR}
92+
target_include_directories(tests PRIVATE ${GTEST_INCLUDE_DIR}
9593
${__MPI_INCLUDES}
9694
${CMAKE_SOURCE_DIR}/src)
9795

examples/jacobi/root

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/jacobi/src/gpu/kernels/hip.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: BSD-3-Clause
44

5-
set(CMAKE_CXX_STANDARD 11)
5+
set(CMAKE_CXX_STANDARD 17)
66
set(CMAKE_CXX_STANDARD_REQUIRED ON)
77

88
#Compile the HIP kernel

0 commit comments

Comments
 (0)