From 3e8f91d1a116060d3fedfe856f3721db970de030 Mon Sep 17 00:00:00 2001 From: XSShawnZeng Date: Thu, 27 Feb 2025 00:23:39 +0800 Subject: [PATCH] Several small bug fixes for Windows platforms * Enhancement for GLFW include and lib search * Fixing issue #321: A potential bug in memMapIPCDrv/memMapIpc.cpp * Update CMakelist.txt for the sample 0_Introduction/template * Copy .dll to correct dir for 5_Domain_Specific/Mandelbrot * Fix typo * Update changelog for cudaNvSciBufMultiplanar --- CHANGELOG.md | 1 + Samples/0_Introduction/CMakeLists.txt | 1 + Samples/0_Introduction/template/CMakeLists.txt | 2 +- Samples/5_Domain_Specific/Mandelbrot/CMakeLists.txt | 4 ++-- 4 files changed, 5 insertions(+), 3 deletions(-) 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()