diff --git a/CHANGELOG.md b/CHANGELOG.md index 661987b3..132af601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ * `cuDLALayerwiseStatsHybrid` * `cuDLALayerwiseStatsStandalone` * `cuDLAStandaloneMode` + * `cudaNvSciBufMultiplanar` * `cudaNvSciNvMedia` * `fluidsGLES` * `nbody_opengles` diff --git a/Samples/0_Introduction/CMakeLists.txt b/Samples/0_Introduction/CMakeLists.txt index 57b17bc3..ba040320 100644 --- a/Samples/0_Introduction/CMakeLists.txt +++ b/Samples/0_Introduction/CMakeLists.txt @@ -55,6 +55,7 @@ add_subdirectory(simpleTexture3D) add_subdirectory(simpleTextureDrv) add_subdirectory(simpleVoteIntrinsics) add_subdirectory(simpleZeroCopy) +add_subdirectory(template) add_subdirectory(systemWideAtomics) add_subdirectory(vectorAdd) add_subdirectory(vectorAddDrv) diff --git a/Samples/0_Introduction/template/CMakeLists.txt b/Samples/0_Introduction/template/CMakeLists.txt index 81b9a2da..c1d32440 100644 --- a/Samples/0_Introduction/template/CMakeLists.txt +++ b/Samples/0_Introduction/template/CMakeLists.txt @@ -20,7 +20,7 @@ include_directories(../../../Common) # Source file # Add target for template -add_executable(template template.cu) +add_executable(template template.cu template_cpu.cpp) target_compile_options(template PRIVATE $<$:--extended-lambda>) diff --git a/Samples/5_Domain_Specific/Mandelbrot/CMakeLists.txt b/Samples/5_Domain_Specific/Mandelbrot/CMakeLists.txt index 5d55a936..97f1fd72 100644 --- a/Samples/5_Domain_Specific/Mandelbrot/CMakeLists.txt +++ b/Samples/5_Domain_Specific/Mandelbrot/CMakeLists.txt @@ -65,14 +65,14 @@ target_compile_features(Mandelbrot PRIVATE cxx_std_17 cuda_std_17) POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/../../../bin/win64/$/freeglut.dll - ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR}/$ ) add_custom_command(TARGET Mandelbrot POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/../../../bin/win64/$/glew64.dll - ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR}/$ ) endif()