source: pacpusframework/branches/2.0-beta1/cmake/PacpusDependencies.cmake@ 151

Last change on this file since 151 was 151, checked in by Marek Kurdej, 11 years ago

Fixed: moved dependency on boost::log_setup to PacpusDependencies.cmake.

  • Property svn:executable set to *
File size: 3.5 KB
Line 
1#################################################
2# ___________ ____ ______ __ __ _____ #
3# \____ \__ \ _/ ___\\____ \| | \/ ___/ #
4# | |_> > __ \\ \___| |_> > | /\___ \ #
5# | __(____ /\___ > __/|____//____ > #
6# |__| \/ \/|__| \/ #
7# #
8#################################################
9
10# ========================================
11# Output
12# ========================================
13set(PACPUS_DEFINITIONS "")
14set(PACPUS_DEPENDENCIES_INC "")
15set(PACPUS_DEPENDENCIES_LIB "")
16
17set(PACPUS_USE_QT5 FALSE CACHE BOOL "Whether to use Qt5")
18if(NOT PACPUS_USE_QT5)
19 find_package(Qt4)
20 if(NOT QT4_FOUND)
21 message(WARNING "Qt4 not found try to find Qt5")
22 set(PACPUS_USE_QT5 TRUE)
23 endif()
24endif()
25
26if(PACPUS_USE_QT5)
27message(STATUS "Set CMake variable 'CMAKE_PREFIX_PATH' to the path like '%QT_BIN%/../lib/cmake'")
28# ========================================
29# All the Pacpus modules depend on Qt5
30# However, since each module requires specific Qt's modules, they have to include their own QT_USE_FILE
31# ========================================
32
33# Tell CMake to run moc when necessary:
34#set(CMAKE_AUTOMOC ON)
35# As moc files are generated in the binary dir, tell CMake
36# to always look for includes there:
37set(CMAKE_INCLUDE_CURRENT_DIR ON)
38
39find_package(Qt5Widgets REQUIRED)
40find_package(Qt5Core REQUIRED)
41find_package(Qt5Xml REQUIRED)
42find_package(Qt5Gui REQUIRED)
43find_package(Qt5OpenGL REQUIRED)
44find_package(Qt5Network REQUIRED)
45find_package(Qt5SerialPort REQUIRED)
46
47set(QT_DEFINITIONS
48 ${Qt5Widgets_DEFINITIONS}
49 ${Qt5Core_DEFINITIONS}
50 ${Qt5Xml_DEFINITIONS}
51 ${Qt5Gui_DEFINITIONS}
52 ${Qt5OpenGL_DEFINITIONS}
53 ${Qt5Network_DEFINITIONS}
54 ${Qt5SerialPort_DEFINITIONS}
55)
56set(QT_INCLUDE_DIR
57 ${Qt5Widgets_INCLUDE_DIRS}
58 ${Qt5Core_INCLUDE_DIRS}
59 ${Qt5Xml_INCLUDE_DIRS}
60 ${Qt5Gui_INCLUDE_DIRS}
61 ${Qt5OpenGL_INCLUDE_DIRS}
62 ${Qt5Network_INCLUDE_DIRS}
63 ${Qt5SerialPort_INCLUDE_DIRS}
64)
65set(QT_LIBRARIES
66 ${Qt5Widgets_LIBRARIES}
67 ${Qt5Core_LIBRARIES}
68 ${Qt5Xml_LIBRARIES}
69 ${Qt5Gui_LIBRARIES}
70 ${Qt5OpenGL_LIBRARIES}
71 ${Qt5Network_LIBRARIES}
72 ${Qt5SerialPort_LIBRARIES}
73)
74
75if(Qt5_POSITION_INDEPENDENT_CODE)
76 set(CMAKE_POSITION_INDEPENDENT_CODE ON)
77endif()
78
79else()
80
81# ========================================
82# All the Pacpus modules depend on Qt4
83# However, since each module requires specific Qt modules, they have to include their own QT_USE_FILE
84# ========================================
85find_package(Qt4 REQUIRED)
86
87endif()
88
89# ========================================
90# Boost
91# Do not use compiled modules, include-only headers.
92# ========================================
93if(PACPUS_USE_LOG)
94 list(APPEND PACPUS_DEFINITIONS " -DPACPUS_USE_LOG ")
95 list(APPEND PACPUS_DEFINITIONS " -DBOOST_ALL_DYN_LINK ")
96
97 find_package(Boost 1.54.0 REQUIRED
98 COMPONENTS
99 log
100 log_setup
101 )
102 include_directories(${Boost_INCLUDE_DIRS})
103 link_directories(${Boost_LIBRARY_DIRS})
104
105 list(APPEND PACPUS_DEPENDENCIES_INC ${Boost_INCLUDE_DIRS})
106 list(APPEND PACPUS_DEPENDENCIES_LIB ${Boost_LIBRARIES})
107 #message("\${PACPUS_DEPENDENCIES_LIB} = ${PACPUS_DEPENDENCIES_LIB}")
108endif()
109
110# ========================================
111# Doxygen
112# ========================================
113if(PACPUS_BUILD_DOC)
114 find_package(Doxygen)
115 if(NOT DOXYGEN_FOUND)
116 message(FATAL_ERROR "Doxygen is needed to build the documentation. Please install it correctly")
117 endif()
118endif()
Note: See TracBrowser for help on using the repository browser.