make2cmake.cmake 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # James Bigler, NVIDIA Corp (nvidia.com - jbigler)
  2. # Abe Stephens, SCI Institute -- http://www.sci.utah.edu/~abe/FindCuda.html
  3. #
  4. # Copyright (c) 2008-2009
  5. # NVIDIA Corp.
  6. #
  7. # Copyright (c) 2007-2009
  8. # Scientific Computing and Imaging Institute, University of Utah
  9. #
  10. # This code is licensed under the MIT License. See the FindCUDA.cmake script
  11. # for the text of the license.
  12. # The MIT License
  13. #
  14. # License for the specific language governing rights and limitations under
  15. # Permission is hereby granted, free of charge, to any person obtaining a
  16. # copy of this software and associated documentation files (the "Software"),
  17. # to deal in the Software without restriction, including without limitation
  18. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  19. # and/or sell copies of the Software, and to permit persons to whom the
  20. # Software is furnished to do so, subject to the following conditions:
  21. #
  22. # The above copyright notice and this permission notice shall be included
  23. # in all copies or substantial portions of the Software.
  24. #
  25. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  26. # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  27. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  28. # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  29. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  30. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  31. # DEALINGS IN THE SOFTWARE.
  32. #
  33. #######################################################################
  34. # This converts a file written in makefile syntax into one that can be included
  35. # by CMake.
  36. file(READ ${input_file} depend_text)
  37. if (${depend_text} MATCHES ".+")
  38. # message("FOUND DEPENDS")
  39. # Remember, four backslashes is escaped to one backslash in the string.
  40. string(REGEX REPLACE "\\\\ " " " depend_text ${depend_text})
  41. # This works for the nvcc -M generated dependency files.
  42. string(REGEX REPLACE "^.* : " "" depend_text ${depend_text})
  43. string(REGEX REPLACE "[ \\\\]*\n" ";" depend_text ${depend_text})
  44. set(dependency_list "")
  45. foreach(file ${depend_text})
  46. string(REGEX REPLACE "^ +" "" file ${file})
  47. if(NOT IS_DIRECTORY ${file})
  48. # If softlinks start to matter, we should change this to REALPATH. For now we need
  49. # to flatten paths, because nvcc can generate stuff like /bin/../include instead of
  50. # just /include.
  51. get_filename_component(file_absolute "${file}" ABSOLUTE)
  52. list(APPEND dependency_list "${file_absolute}")
  53. endif(NOT IS_DIRECTORY ${file})
  54. endforeach(file)
  55. else()
  56. # message("FOUND NO DEPENDS")
  57. endif()
  58. # Remove the duplicate entries and sort them.
  59. list(REMOVE_DUPLICATES dependency_list)
  60. list(SORT dependency_list)
  61. foreach(file ${dependency_list})
  62. set(cuda_nvcc_depend "${cuda_nvcc_depend} \"${file}\"\n")
  63. endforeach()
  64. file(WRITE ${output_file} "# Generated by: make2cmake.cmake\nSET(CUDA_NVCC_DEPEND\n ${cuda_nvcc_depend})\n\n")