SelectLibraryConfigurations.cmake 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # select_library_configurations( basename )
  2. #
  3. # This macro takes a library base name as an argument, and will choose good
  4. # values for basename_LIBRARY, basename_LIBRARIES, basename_LIBRARY_DEBUG, and
  5. # basename_LIBRARY_RELEASE depending on what has been found and set. If only
  6. # basename_LIBRARY_RELEASE is defined, basename_LIBRARY, basename_LIBRARY_DEBUG,
  7. # and basename_LIBRARY_RELEASE will be set to the release value. If only
  8. # basename_LIBRARY_DEBUG is defined, then basename_LIBRARY,
  9. # basename_LIBRARY_DEBUG and basename_LIBRARY_RELEASE will take the debug value.
  10. #
  11. # If the generator supports configuration types, then basename_LIBRARY and
  12. # basename_LIBRARIES will be set with debug and optimized flags specifying the
  13. # library to be used for the given configuration. If no build type has been set
  14. # or the generator in use does not support configuration types, then
  15. # basename_LIBRARY and basename_LIBRARIES will take only the release values.
  16. #=============================================================================
  17. # Copyright 2009 Will Dicharry <[email protected]>
  18. # Copyright 2005-2009 Kitware, Inc.
  19. #
  20. # Distributed under the OSI-approved BSD License (the "License");
  21. # see accompanying file Copyright.txt for details.
  22. #
  23. # This software is distributed WITHOUT ANY WARRANTY; without even the
  24. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  25. # See the License for more information.
  26. #=============================================================================
  27. # (To distribute this file outside of CMake, substitute the full
  28. # License text for the above reference.)
  29. # This macro was adapted from the FindQt4 CMake module and is maintained by Will
  30. # Dicharry <[email protected]>.
  31. # Utility macro to check if one variable exists while another doesn't, and set
  32. # one that doesn't exist to the one that exists.
  33. macro( _set_library_name basename GOOD BAD )
  34. if( ${basename}_LIBRARY_${GOOD} AND NOT ${basename}_LIBRARY_${BAD} )
  35. set( ${basename}_LIBRARY_${BAD} ${${basename}_LIBRARY_${GOOD}} )
  36. set( ${basename}_LIBRARY ${${basename}_LIBRARY_${GOOD}} )
  37. set( ${basename}_LIBRARIES ${${basename}_LIBRARY_${GOOD}} )
  38. endif( ${basename}_LIBRARY_${GOOD} AND NOT ${basename}_LIBRARY_${BAD} )
  39. endmacro( _set_library_name )
  40. macro( select_library_configurations basename )
  41. # if only the release version was found, set the debug to be the release
  42. # version.
  43. _set_library_name( ${basename} RELEASE DEBUG )
  44. # if only the debug version was found, set the release value to be the
  45. # debug value.
  46. _set_library_name( ${basename} DEBUG RELEASE )
  47. if (${basename}_LIBRARY_DEBUG AND ${basename}_LIBRARY_RELEASE AND
  48. NOT ${basename}_LIBRARY_DEBUG STREQUAL ${basename}_LIBRARY_RELEASE)
  49. # if the generator supports configuration types or CMAKE_BUILD_TYPE
  50. # is set, then set optimized and debug options.
  51. if( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
  52. set( ${basename}_LIBRARY
  53. optimized ${${basename}_LIBRARY_RELEASE}
  54. debug ${${basename}_LIBRARY_DEBUG} )
  55. set( ${basename}_LIBRARIES
  56. optimized ${${basename}_LIBRARY_RELEASE}
  57. debug ${${basename}_LIBRARY_DEBUG} )
  58. else( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
  59. # If there are no configuration types or build type, just use
  60. # the release version
  61. set( ${basename}_LIBRARY ${${basename}_LIBRARY_RELEASE} )
  62. set( ${basename}_LIBRARIES ${${basename}_LIBRARY_RELEASE} )
  63. endif( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
  64. endif()
  65. set( ${basename}_LIBRARY ${${basename}_LIBRARY} CACHE FILEPATH
  66. "The ${basename} library" )
  67. if( ${basename}_LIBRARY )
  68. set( ${basename}_FOUND TRUE )
  69. endif( ${basename}_LIBRARY )
  70. mark_as_advanced( ${basename}_LIBRARY
  71. ${basename}_LIBRARY_RELEASE
  72. ${basename}_LIBRARY_DEBUG
  73. )
  74. endmacro( select_library_configurations )