Fix build failure: call to dlog API
[platform/core/base/rpm-installer.git] / CMakeLists.txt
1 #
2 # Copyright (c) 2008 ~ 2010 Samsung Electronics Co., Ltd.
3 # All rights reserved
4 #
5
6 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
7 SET(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
8
9 PROJECT(rpm-installer C)
10
11 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
12 SET(EXEC_PREFIX "\${prefix}")
13 SET(LIBDIR "\${prefix}/lib")
14 SET(INCLUDEDIR "\${prefix}/include")
15 SET(VERSION 1.0)
16
17 set(CMAKE_SKIP_BUILD_RPATH true)
18
19 ##################
20 ## build comm libraries
21 add_subdirectory(common)
22 add_subdirectory(frontend)
23 add_subdirectory(po)
24 add_subdirectory(backend-lib)
25 ##################
26