option(COVERAGE_STATS "Code coverage" OFF)
option(DUMMY_BUTTON "Build With Dummy Button" ON)
option(PWA "Build with PWA" ON)
+option(PWE_SHUB "Build for PWE_SHUB" ON)
#Enable C++14 support
include(CheckCXXCompilerFlag)
ADD_DEFINITIONS(-DPWA=1)
endif()
+ if (${PWE_SHUB} MATCHES "ON")
+ ADD_DEFINITIONS(-DPWE_SHUB=1)
+ elseif(${PWE_SHUB} MATCHES "OFF")
+ ADD_DEFINITIONS(-DPWE_SHUB=0)
+ endif()
+
endif(TIZEN_BUILD)
ADD_DEFINITIONS(-DEDJE_DIR=\"${EDJE_DIR}\")
message(STATUS "Code Coverage statistics (COVERAGE_STATS) :" ${COVERAGE_STATS})
message(STATUS "Device profile (PROFILE) :" ${PROFILE})
message(STATUS "Building with Dummy Button (DUMMY_BUTTON) :" ${DUMMY_BUTTON})
+message(STATUS "Building for PWE Service Hub (PWE_SHUB) :" ${PWE_SHUB})
message(STATUS "------------------------------------------")