cmake_minimum_required(VERSION 3.20) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/Modules") project(smokeParticles LANGUAGES C CXX CUDA) find_package(CUDAToolkit REQUIRED) set(CMAKE_POSITION_INDEPENDENT_CODE ON) set(CMAKE_CUDA_ARCHITECTURES 50 52 60 61 70 72 75 80 86 87 89 90 100 101 120) set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -Wno-deprecated-gpu-targets") if(CMAKE_BUILD_TYPE STREQUAL "Debug") # set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G") # enable cuda-gdb (expensive) endif() # Include directories and libraries include_directories(../../../Common) if(WIN32) set(PC_GLUT_INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/../../../Common") set(PC_GLUT_LIBRARY_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/../../../Common/lib/x64") endif() find_package(OpenGL) find_package(GLUT) # Source file if(${OpenGL_FOUND}) if (${GLUT_FOUND}) # Add target for smokeParticles add_executable(smokeParticles GLSLProgram.cpp ParticleSystem.cpp ParticleSystem_cuda.cu SmokeRenderer.cpp SmokeShaders.cpp framebufferObject.cpp particleDemo.cpp renderbuffer.cpp) target_compile_options(smokeParticles PRIVATE $<$:--extended-lambda>) target_compile_features(smokeParticles PRIVATE cxx_std_17 cuda_std_17) set_target_properties(smokeParticles PROPERTIES CUDA_SEPARABLE_COMPILATION ON) target_include_directories(smokeParticles PUBLIC ${OPENGL_INCLUDE_DIR} ${CUDAToolkit_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS} ) target_link_libraries(smokeParticles ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES} ) add_custom_command(TARGET smokeParticles POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/data ${CMAKE_CURRENT_BINARY_DIR}/data ) if(WIN32) target_link_libraries(smokeParticles ${PC_GLUT_LIBRARY_DIRS}/freeglut.lib ${PC_GLUT_LIBRARY_DIRS}/glew64.lib ) add_custom_command(TARGET smokeParticles POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/../../../bin/win64/$/freeglut.dll ${CMAKE_CURRENT_BINARY_DIR}/$ ) add_custom_command(TARGET smokeParticles POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/../../../bin/win64/$/glew64.dll ${CMAKE_CURRENT_BINARY_DIR}/$ ) endif() else() message(STATUS "GLUT not found - will not build sample 'smokeParticles'") endif() else() message(STATUS "OpenGL not found - will not build sample 'smokeParticles'") endif()