From 8d564d5e3afdab5dda868f42a13d85f3d0e75bc9 Mon Sep 17 00:00:00 2001 From: XSShawnZeng Date: Fri, 21 Feb 2025 00:06:40 +0800 Subject: [PATCH] Enhancement for GLFW include and lib search (#331) Fixes NVIDIA bug 5115098 --- README.md | 2 +- .../simpleVulkan/CMakeLists.txt | 24 ++++++++++------- .../simpleVulkanMMAP/CMakeLists.txt | 26 ++++++++++--------- .../smokeParticles/CMakeLists.txt | 2 +- .../vulkanImageCUDA/CMakeLists.txt | 23 +++++++++------- 5 files changed, 43 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 8cf8516a..93ea15fa 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ Vulkan is a low-overhead, cross-platform 3D graphics and compute API. Vulkan tar #### GLFW GLFW is a lightweight, open-source library designed for managing OpenGL, OpenGL ES, and Vulkan contexts. It simplifies the process of creating and managing windows, handling user input (keyboard, mouse, and joystick), and working with multiple monitors in a cross-platform manner. -To set up GLFW on a Windows system, Download the pre-built binaries from [GLFW website](https://www.glfw.org/download.html) and extract the zip file into the folder, pass the GLFW include header as `-DGLFW_INCLUDE_DIR` for cmake configuring and follow the Build_instructions.txt in the sample folder to set up the t. +To set up GLFW on a Windows system, Download the pre-built binaries from [GLFW website](https://www.glfw.org/download.html) and extract the zip file into the folder, pass the GLFW include header folder as `-DGLFW_INCLUDE_DIR` and lib folder as `-DGLFW_LIB_DIR` for cmake configuring. #### OpenMP diff --git a/Samples/5_Domain_Specific/simpleVulkan/CMakeLists.txt b/Samples/5_Domain_Specific/simpleVulkan/CMakeLists.txt index 7e10f27a..01399e69 100644 --- a/Samples/5_Domain_Specific/simpleVulkan/CMakeLists.txt +++ b/Samples/5_Domain_Specific/simpleVulkan/CMakeLists.txt @@ -20,16 +20,19 @@ include_directories(../../../Common) find_package(Vulkan) find_package(OpenGL) + # Include the check_include_file macro include(CheckIncludeFile) # Check for the GLFW/glfw3.h header check_include_file("GLFW/glfw3.h" HAVE_GLFW3_H) -# Find GLFW/glfw3.h header for Windows +# Find GLFW header and lib for Windows if(WIN32) - find_file(GLFW3_H "glfw3.h" PATH "$ENV{GLFW_INCLUDES_DIR}/GLFW") - if(GLFW3_H) + find_file(GLFW3_H "GLFW/glfw3.h" PATH "${GLFW_INCLUDE_DIR}") + find_library(GLFW3_LIB "glfw3" PATH "${GLFW_LIB_DIR}") + if(GLFW3_H AND GLFW3_LIB) + message(STATUS "Found GLFW/glfw3.h and GLFW library.") set(HAVE_GLFW3_H 1) endif() endif() @@ -51,21 +54,22 @@ if(${Vulkan_FOUND}) ${Vulkan_INCLUDE_DIRS} ${CUDAToolkit_INCLUDE_DIRS} ) - + target_link_libraries(simpleVulkan + ${Vulkan_LIBRARIES} + OpenGL::GL + ) if(WIN32) + target_include_directories(simpleVulkan PUBLIC + ${GLFW_INCLUDE_DIR} + ) target_link_libraries(simpleVulkan - ${Vulkan_LIBRARIES} - OpenGL::GL - glfw3.dll + ${GLFW3_LIB} ) else() target_link_libraries(simpleVulkan - ${Vulkan_LIBRARIES} - OpenGL::GL glfw ) endif() - add_custom_command(TARGET simpleVulkan POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/sinewave.frag diff --git a/Samples/5_Domain_Specific/simpleVulkanMMAP/CMakeLists.txt b/Samples/5_Domain_Specific/simpleVulkanMMAP/CMakeLists.txt index 9e37812c..d5d3555f 100644 --- a/Samples/5_Domain_Specific/simpleVulkanMMAP/CMakeLists.txt +++ b/Samples/5_Domain_Specific/simpleVulkanMMAP/CMakeLists.txt @@ -26,10 +26,12 @@ include(CheckIncludeFile) # Check for the GLFW/glfw3.h header check_include_file("GLFW/glfw3.h" HAVE_GLFW3_H) -# Find GLFW/glfw3.h header for Windows +# Find GLFW header and lib for Windows if(WIN32) - find_file(GLFW3_H "glfw3.h" PATH "$ENV{GLFW_INCLUDES_DIR}/GLFW") - if(GLFW3_H) + find_file(GLFW3_H "GLFW/glfw3.h" PATH "${GLFW_INCLUDE_DIR}") + find_library(GLFW3_LIB "glfw3" PATH "${GLFW_LIB_DIR}") + if(GLFW3_H AND GLFW3_LIB) + message(STATUS "Found GLFW/glfw3.h and GLFW library.") set(HAVE_GLFW3_H 1) endif() endif() @@ -51,23 +53,23 @@ if(${Vulkan_FOUND}) ${Vulkan_INCLUDE_DIRS} ${CUDAToolkit_INCLUDE_DIRS} ) - + target_link_libraries(simpleVulkanMMAP + ${Vulkan_LIBRARIES} + OpenGL::GL + CUDA::cuda_driver + ) if(WIN32) + target_include_directories(simpleVulkanMMAP PUBLIC + ${GLFW_INCLUDE_DIR} + ) target_link_libraries(simpleVulkanMMAP - ${Vulkan_LIBRARIES} - OpenGL::GL - CUDA::cuda_driver - glfw3.dll + ${GLFW3_LIB} ) else() target_link_libraries(simpleVulkanMMAP - ${Vulkan_LIBRARIES} - OpenGL::GL - CUDA::cuda_driver glfw ) endif() - add_custom_command(TARGET simpleVulkanMMAP POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/montecarlo.frag diff --git a/Samples/5_Domain_Specific/smokeParticles/CMakeLists.txt b/Samples/5_Domain_Specific/smokeParticles/CMakeLists.txt index dc90c5a4..482c9811 100644 --- a/Samples/5_Domain_Specific/smokeParticles/CMakeLists.txt +++ b/Samples/5_Domain_Specific/smokeParticles/CMakeLists.txt @@ -71,7 +71,7 @@ if(${OpenGL_FOUND}) POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/../../../bin/win64/$/glew64.dll - ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR}/$ ) endif() diff --git a/Samples/5_Domain_Specific/vulkanImageCUDA/CMakeLists.txt b/Samples/5_Domain_Specific/vulkanImageCUDA/CMakeLists.txt index 7e5bfc59..88bd3cd2 100644 --- a/Samples/5_Domain_Specific/vulkanImageCUDA/CMakeLists.txt +++ b/Samples/5_Domain_Specific/vulkanImageCUDA/CMakeLists.txt @@ -26,10 +26,12 @@ include(CheckIncludeFile) # Check for the GLFW/glfw3.h header check_include_file("GLFW/glfw3.h" HAVE_GLFW3_H) -# Find GLFW/glfw3.h header for Windows +# Find GLFW header and lib for Windows if(WIN32) - find_file(GLFW3_H "glfw3.h" PATH "$ENV{GLFW_INCLUDES_DIR}/GLFW") - if(GLFW3_H) + find_file(GLFW3_H "GLFW/glfw3.h" PATH "${GLFW_INCLUDE_DIR}") + find_file(GLFW3_LIB "glfw3" PATH "${GLFW_LIB_DIR}") + if(GLFW3_H AND GLFW3_LIB) + message(STATUS "Found GLFW/glfw3.h and GLFW library.") set(HAVE_GLFW3_H 1) endif() endif() @@ -51,21 +53,22 @@ if(${Vulkan_FOUND}) ${Vulkan_INCLUDE_DIRS} ${CUDAToolkit_INCLUDE_DIRS} ) - + target_link_libraries(vulkanImageCUDA + ${Vulkan_LIBRARIES} + OpenGL::GL + ) if(WIN32) + target_include_directories(vulkanImageCUDA PUBLIC + ${GLFW_INCLUDE_DIR} + ) target_link_libraries(vulkanImageCUDA - ${Vulkan_LIBRARIES} - OpenGL::GL - glfw3.dll + ${GLFW3_LIB} ) else() target_link_libraries(vulkanImageCUDA - ${Vulkan_LIBRARIES} - OpenGL::GL glfw ) endif() - add_custom_command(TARGET vulkanImageCUDA POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/shader.frag