Skip to content

Commit

Permalink
Rename to cupoch_cuda_flags.cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Aug 11, 2023
1 parent 2e1fe71 commit 9d407c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ if (INIT_ARCHITECTURES)
endif()
message(STATUS "CMAKE_CUDA_ARCHITECTURES: ${CMAKE_CUDA_ARCHITECTURES}")

include(configure_cupoch_cuda_flags)
include(cupoch_cuda_flags)

include_directories(src)
add_subdirectory(src)
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def build(self):
def package(self):
cmake = CMake(self)
cmake.install()
for cmake_module in ["configure_cuda.cmake", "cuda_architecture_macros.cmake"]:
for cmake_module in ["cupoch_cuda_flags.cmake", "cuda_architecture_macros.cmake"]:
copy(self, cmake_module,
dst=self.package_path / "lib" / "cmake",
src=self.source_path / "cmake")
Expand Down Expand Up @@ -279,4 +279,4 @@ def package_info(self):
# Export CUDA dependencies and flags
cmake_dir = Path("lib", "cmake")
self.cpp_info.builddirs.append(cmake_dir)
self.cpp_info.set_property("cmake_build_modules", [cmake_dir / "configure_cuda.cmake"])
self.cpp_info.set_property("cmake_build_modules", [cmake_dir / "cupoch_cuda_flags.cmake"])

0 comments on commit 9d407c6

Please sign in to comment.