From 67ecc68ec661940823bc6d39f656eebf376fa8e2 Mon Sep 17 00:00:00 2001 From: GiWoong Kim Date: Thu, 16 Apr 2015 14:02:35 +0900 Subject: [PATCH] build: enable qt configuration Change-Id: Id4fc5fb41931d47b8aac832ef88ad8a85afb9104 Signed-off-by: GiWoong Kim --- tizen/emulator_configure.sh | 6 ++++++ tizen/src/ui/hovertype.cpp | 1 + 2 files changed, 7 insertions(+) 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() -- 2.34.1