X-Git-Url: http://git.maemo.org/git/?p=qtrapids;a=blobdiff_plain;f=CMakeLists.txt;h=5ac910a86b9d29ab8ffe1f62cf3b6f9790f32049;hp=adee58e4fc248d71f254073c8a36e975cf24b569;hb=1d97c0a567b80cf9fc67791669debfe3aa9c4c84;hpb=06410091b1e07c443849f0fe71050654c6fb9710 diff --git a/CMakeLists.txt b/CMakeLists.txt index adee58e..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,4 +19,5 @@ find_package(Qt4 REQUIRED) add_subdirectory(./dbus) add_subdirectory(./src/client) add_subdirectory(./src/server) +#add_subdirectory(./src/utest)