mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2026-09-12 01:06:53 +08:00
Release 13.4 of the CUDA Samples supported by CUDA Toolkit 13.4. See Changelog for more information.
47 lines
1.3 KiB
CMake
47 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
|
|
include("${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/DetectCudaArch.cmake")
|
|
|
|
if(SAMPLE_SKIP_BUILD)
|
|
return()
|
|
endif()
|
|
|
|
project(simpleD3D11Texture LANGUAGES C CXX CUDA)
|
|
|
|
include("${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/CudaSampleCommon.cmake")
|
|
|
|
find_package(CUDAToolkit REQUIRED)
|
|
|
|
include_directories(../../../Common)
|
|
|
|
if(WIN32)
|
|
add_executable(simpleD3D11Texture
|
|
simpleD3D11Texture.cpp
|
|
../../../Common/rendercheck_d3d11.cpp
|
|
texture_2d.cu
|
|
texture_3d.cu
|
|
texture_cube.cu
|
|
)
|
|
target_compile_options(simpleD3D11Texture PRIVATE $<$<COMPILE_LANGUAGE:CUDA>:--extended-lambda>)
|
|
target_compile_features(simpleD3D11Texture PRIVATE cxx_std_17 cuda_std_17)
|
|
target_include_directories(simpleD3D11Texture PRIVATE
|
|
${CUDAToolkit_INCLUDE_DIRS}
|
|
)
|
|
target_link_libraries(simpleD3D11Texture PRIVATE
|
|
d3d11
|
|
dxgi
|
|
dxguid
|
|
d3dcompiler
|
|
)
|
|
add_custom_command(TARGET simpleD3D11Texture POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
|
${CMAKE_CURRENT_SOURCE_DIR}/data
|
|
${CMAKE_CURRENT_BINARY_DIR}/data
|
|
)
|
|
include(InstallSamples)
|
|
setup_samples_install()
|
|
else()
|
|
message(STATUS "Sample 'simpleD3D11Texture' is Windows-only - skipping")
|
|
endif()
|