Use_wxWindows.cmake 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #.rst:
  2. # Use_wxWindows
  3. # -------------
  4. #
  5. #
  6. #
  7. #
  8. # This convenience include finds if wxWindows is installed and set the
  9. # appropriate libs, incdirs, flags etc. author Jan Woetzel <jw -at-
  10. # mip.informatik.uni-kiel.de> (07/2003)
  11. #
  12. # USAGE:
  13. #
  14. # ::
  15. #
  16. # just include Use_wxWindows.cmake
  17. # in your projects CMakeLists.txt
  18. #
  19. # include( ${CMAKE_MODULE_PATH}/Use_wxWindows.cmake)
  20. #
  21. # ::
  22. #
  23. # if you are sure you need GL then
  24. #
  25. # set(WXWINDOWS_USE_GL 1)
  26. #
  27. # ::
  28. #
  29. # *before* you include this file.
  30. #=============================================================================
  31. # Copyright 2003-2009 Kitware, Inc.
  32. # Copyright 2003 Jan Woetzel
  33. #
  34. # Distributed under the OSI-approved BSD License (the "License");
  35. # see accompanying file Copyright.txt for details.
  36. #
  37. # This software is distributed WITHOUT ANY WARRANTY; without even the
  38. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  39. # See the License for more information.
  40. #=============================================================================
  41. # (To distribute this file outside of CMake, substitute the full
  42. # License text for the above reference.)
  43. # -----------------------------------------------------
  44. # 16.Feb.2004: changed INCLUDE to FIND_PACKAGE to read from users own non-system CMAKE_MODULE_PATH (Jan Woetzel JW)
  45. # 07/2006: rewrite as FindwxWidgets.cmake, kept for backward compatibility JW
  46. message(STATUS "Use_wxWindows.cmake is DEPRECATED. \n"
  47. "Please use find_package(wxWidgets) and include(${wxWidgets_USE_FILE}) instead. (JW)")
  48. # ------------------------
  49. find_package( wxWindows )
  50. if(WXWINDOWS_FOUND)
  51. #message("DBG Use_wxWindows.cmake: WXWINDOWS_INCLUDE_DIR=${WXWINDOWS_INCLUDE_DIR} WXWINDOWS_LINK_DIRECTORIES=${WXWINDOWS_LINK_DIRECTORIES} WXWINDOWS_LIBRARIES=${WXWINDOWS_LIBRARIES} CMAKE_WXWINDOWS_CXX_FLAGS=${CMAKE_WXWINDOWS_CXX_FLAGS} WXWINDOWS_DEFINITIONS=${WXWINDOWS_DEFINITIONS}")
  52. if(WXWINDOWS_INCLUDE_DIR)
  53. include_directories(${WXWINDOWS_INCLUDE_DIR})
  54. endif()
  55. if(WXWINDOWS_LINK_DIRECTORIES)
  56. link_directories(${WXWINDOWS_LINK_DIRECTORIES})
  57. endif()
  58. if(WXWINDOWS_LIBRARIES)
  59. link_libraries(${WXWINDOWS_LIBRARIES})
  60. endif()
  61. if (CMAKE_WXWINDOWS_CXX_FLAGS)
  62. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_WXWINDOWS_CXX_FLAGS}")
  63. endif()
  64. if(WXWINDOWS_DEFINITIONS)
  65. add_definitions(${WXWINDOWS_DEFINITIONS})
  66. endif()
  67. else()
  68. message(SEND_ERROR "wxWindows not found by Use_wxWindows.cmake")
  69. endif()