1 | #################################################
|
---|
2 | # ___________ ____ ______ __ __ _____ #
|
---|
3 | # \____ \__ \ _/ ___\\____ \| | \/ ___/ #
|
---|
4 | # | |_> > __ \\ \___| |_> > | /\___ \ #
|
---|
5 | # | __(____ /\___ > __/|____//____ > #
|
---|
6 | # |__| \/ \/|__| \/ #
|
---|
7 | # #
|
---|
8 | #################################################
|
---|
9 |
|
---|
10 | # ========================================
|
---|
11 | # Output
|
---|
12 | # ========================================
|
---|
13 | set(PACPUS_DEFINITIONS "")
|
---|
14 | set(PACPUS_DEPENDENCIES_INC "")
|
---|
15 | set(PACPUS_DEPENDENCIES_LIB "")
|
---|
16 |
|
---|
17 | # ========================================
|
---|
18 | # All the Pacpus' modules depends from Qt4
|
---|
19 | # However, since each module requires specific Qt's modules, they have to include their own QT_USE_FILE
|
---|
20 | # ========================================
|
---|
21 | find_package(Qt4 REQUIRED)
|
---|
22 |
|
---|
23 | # ========================================
|
---|
24 | # log4cxx
|
---|
25 | # ========================================
|
---|
26 | if (PACPUS_USE_LOG)
|
---|
27 | find_package(log4cxx REQUIRED)
|
---|
28 |
|
---|
29 | list(APPEND PACPUS_DEFINITIONS " -DPACPUS_USE_LOG ")
|
---|
30 | list(APPEND PACPUS_DEPENDENCIES_INC ${LOG4CXX_INCLUDE_DIRS})
|
---|
31 | list(APPEND PACPUS_DEPENDENCIES_LIB ${LOG4CXX_LIBRARIES})
|
---|
32 |
|
---|
33 | # If needed, install the dll of log4cxx
|
---|
34 | if (WIN32 AND MSVC AND IS_BUILDING_PACPUS)
|
---|
35 | pacpus_get_msvc(MSVC_VERSION)
|
---|
36 | pacpus_purge_backslash(LOG4CXX_ROOT)
|
---|
37 |
|
---|
38 | install(
|
---|
39 | FILES
|
---|
40 | ${LOG4CXX_ROOT}/bin/${MSVC_VERSION}/log4cxx.dll
|
---|
41 | ${LOG4CXX_ROOT}/bin/${MSVC_VERSION}/log4cxx_d.dll
|
---|
42 | DESTINATION
|
---|
43 | ${PACPUS_INSTALL_DIR}/bin
|
---|
44 | )
|
---|
45 | endif()
|
---|
46 | endif()
|
---|
47 |
|
---|
48 | # ========================================
|
---|
49 | # Doxygen
|
---|
50 | # ========================================
|
---|
51 | if (PACPUS_BUILD_DOC)
|
---|
52 | find_package(Doxygen)
|
---|
53 | if (NOT DOXYGEN_FOUND)
|
---|
54 | message(FATAL_ERROR "Doxygen is needed to build the documentation. Please install it correctly")
|
---|
55 | endif()
|
---|
56 | endif() |
---|