remove useless hard path From Cmake file. 39/23439/2
authorRonan Le Martret <ronan@fridu.net>
Wed, 25 Jun 2014 15:08:21 +0000 (17:08 +0200)
committerronan(Eurogiciel) Le Martret <ronan.lemartret@open.eurogiciel.org>
Wed, 25 Jun 2014 15:10:53 +0000 (08:10 -0700)
Cmake provides the path throw
 SET(requires "dlog bundle glib-2.0 aul chromium")
 pkg_check_modules(${this_target} REQUIRED ${requires})

So, we only need:
INCLUDE_DIRECTORIES (
include
)

Change-Id: I6da0dd0c5df0d1dce6ada6698b9779ec6d9cb0da
Signed-off-by: Ronan Le Martret <ronan@fridu.net>
CMakeLists.txt

index 150a797..4f21406 100755 (executable)
@@ -9,12 +9,6 @@ SET(PREFIX ${CMAKE_INSTALL_PREFIX})
 SET(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/cmake_build_tmp/output)
 
 INCLUDE_DIRECTORIES (
-       /usr/include
-       /usr/include/appfw
-       /usr/include/dlog
-       /usr/include/glib-2.0
-       ${LIB_INSTALL_DIR}/glib-2.0/include
-       /usr/include/chromium
        include
        )