Third party libs
[profile/ivi/smartdevicelink.git] / src / thirdPartyLibs / CMakeLists.txt
1 # Copyright (c) 2014, Ford Motor Company
2 # All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are met:
6 #
7 # Redistributions of source code must retain the above copyright notice, this
8 # list of conditions and the following disclaimer.
9 #
10 # Redistributions in binary form must reproduce the above copyright notice,
11 # this list of conditions and the following
12 # disclaimer in the documentation and/or other materials provided with the
13 # distribution.
14 #
15 # Neither the name of the Ford Motor Company nor the names of its contributors
16 # may be used to endorse or promote products derived from this software
17 # without specific prior written permission.
18 #
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 # POSSIBILITY OF SUCH DAMAGE.
30
31 # --- jsoncpp
32 add_subdirectory(./jsoncpp)
33
34 # --- MessageBroker
35 add_subdirectory(./MessageBroker)
36
37 # --- encryption
38 add_subdirectory(./encryption)
39
40 if (BUILD_USB_SUPPORT)
41 if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
42 add_subdirectory(./libusbx-1.0.16)
43 endif()
44 endif()
45
46 set(3RD_PARTY_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}/3rd_party")
47
48 if(ENABLE_LOG OR HMI_DBUS_API)
49
50 # --- libexpat
51   add_subdirectory(expat-2.1.0)
52
53 endif()
54
55 if(ENABLE_LOG)
56
57 # --- libapr-1
58   add_subdirectory(apr-cmake)
59
60 # --- apr-util
61   add_subdirectory(apr-util-cmake)
62
63 # --- log4cxx
64   add_subdirectory(apache-log4cxx-cmake)
65   set(LOG4CXX_LIBS_DIRECTORY ${LOG4CXX_LIBS_DIRECTORY} PARENT_SCOPE)
66
67 endif()
68
69 if(HMI_DBUS_API)
70
71 # D-Bus
72   add_subdirectory(dbus-cmake)
73
74 endif()