From: GiWoong Kim Date: Thu, 16 Apr 2015 05:02:35 +0000 (+0900) Subject: build: enable qt configuration X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~436^2~69^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=67ecc68ec661940823bc6d39f656eebf376fa8e2;p=sdk%2Femulator%2Fqemu.git build: enable qt configuration Change-Id: Id4fc5fb41931d47b8aac832ef88ad8a85afb9104 Signed-off-by: GiWoong Kim --- diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index e045a00ec9..c2a2c2b62c 100755 --- a/tizen/emulator_configure.sh +++ b/tizen/emulator_configure.sh @@ -205,6 +205,7 @@ exec ./configure \ --disable-pie \ --enable-virtfs \ --disable-xen \ + --enable-qt \ $CONFIGURE_APPEND \ ;; MINGW*) @@ -223,6 +224,7 @@ exec ./configure \ --audio-drv-list=winwave \ --enable-hax \ --disable-vnc \ + --enable-qt \ $CONFIGURE_APPEND \ ;; Darwin*) @@ -233,13 +235,17 @@ echo "##### QEMU configuring for emulator" echo "##### QEMU configure append:" $CONFIGURE_APPEND ./configure \ --enable-werror \ + --cc=clang \ + --cxx=clang \ --extra-cflags=-mmacosx-version-min=10.4 \ + --extra-ldflags=-lstdc++ \ --audio-drv-list=coreaudio \ --enable-shm \ --enable-hax \ --disable-vnc \ --disable-cocoa \ --disable-sdl \ + --enable-qt \ $CONFIGURE_APPEND \ # --extra-ldflags="-Xlinker -export_dynamic" \ diff --git a/tizen/src/ui/hovertype.cpp b/tizen/src/ui/hovertype.cpp index a09bfe9be2..028832bf18 100644 --- a/tizen/src/ui/hovertype.cpp +++ b/tizen/src/ui/hovertype.cpp @@ -32,6 +32,7 @@ HoverType::HoverType(QColor color) { this->color = color; + this->fill = false; } QColor HoverType::getColor()