X-Git-Url: http://git.maemo.org/git/?p=qtrapids;a=blobdiff_plain;f=CMakeLists.txt;h=5ac910a86b9d29ab8ffe1f62cf3b6f9790f32049;hp=bd61dcddf56fa7acfcd99008b7d93b2e1866b991;hb=0ea35119386f27d7ea6e8de26d4d19ab6dca4838;hpb=c2a1fc3f4d0461bf550cbdf36ff36cd853206f6f;ds=inline diff --git a/CMakeLists.txt b/CMakeLists.txt index bd61dcd..5ac910a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,16 @@ project(qtrapids) cmake_minimum_required(VERSION 2.6) set(CMAKE_VERBOSE_MAKEFILE ON) +# Check if we are building under scratchbox and link with QtMaemo5 only in that case. +# Thus, we maintain desktop build-ability also +set (SCRATCHBOX_UNAME $ENV{SBOX_UNAME_MACHINE}) + +if (SCRATCHBOX_UNAME) + MESSAGE("Configuring for building under Scratchbox..") + SET(CMAKE_INSTALL_PREFIX /usr) + SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) +endif (SCRATCHBOX_UNAME) + add_definitions(-Wall -g) find_package(Qt4 REQUIRED) @@ -9,5 +19,5 @@ find_package(Qt4 REQUIRED) add_subdirectory(./dbus) add_subdirectory(./src/client) add_subdirectory(./src/server) -add_subdirectory(./src/utest) +#add_subdirectory(./src/utest)