# Include directories and libraries include_directories(../../../Common) find_package(OpenGL) find_package(GLUT) # Source file set(SRC_FILES fluidsGL_kernels.cu fluidsGL.cpp ) if(${OpenGL_FOUND}) if (${GLUT_FOUND}) # Add target for fluidsGL add_executable(fluidsGL ${SRC_FILES}) set_target_properties(fluidsGL PROPERTIES CUDA_SEPARABLE_COMPILATION ON) target_include_directories(fluidsGL PUBLIC ${OPENGL_INCLUDE_DIR} ${CUDAToolkit_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS} ) target_link_libraries(fluidsGL ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES} CUDA::cufft ) # Copy clock_kernel.cu to the output directory add_custom_command(TARGET fluidsGL POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory_if_different ${CMAKE_CURRENT_SOURCE_DIR}/data ${CMAKE_CURRENT_BINARY_DIR}/data ) else() message(STATUS "GLUT not found - will not build sample 'fluidsGL'") endif() else() message(STATUS "OpenGL not found - will not build sample 'fluidsGL'") endif()