X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Fdali-core-version.cpp;h=5fa2fdee71adb22ac0b29d30208f926b249945fd;hb=db1186aeea903832ea8ea49acc838fb59c42dce3;hp=e9063ab1782b2874398423be9b5a1a064db6fdca;hpb=dc728f7a5394116e146dbef3162962c808692c82;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/dali-core-version.cpp b/dali/public-api/dali-core-version.cpp index e9063ab..5fa2fde 100644 --- a/dali/public-api/dali-core-version.cpp +++ b/dali/public-api/dali-core-version.cpp @@ -28,9 +28,11 @@ namespace Dali const unsigned int CORE_MAJOR_VERSION = 1; const unsigned int CORE_MINOR_VERSION = 1; -const unsigned int CORE_MICRO_VERSION = 10; +const unsigned int CORE_MICRO_VERSION = 19; const char * const CORE_BUILD_DATE = __DATE__ " " __TIME__; +#ifndef EMSCRIPTEN + #ifdef DEBUG_ENABLED namespace { @@ -39,11 +41,13 @@ struct PrintVersion { PrintVersion() { - std::cout << "DALi Core: " << CORE_MAJOR_VERSION << "." << CORE_MINOR_VERSION << "." << CORE_MICRO_VERSION << " (" << CORE_BUILD_DATE << ")" << std::endl; + std::cerr << "DALi Core: " << CORE_MAJOR_VERSION << "." << CORE_MINOR_VERSION << "." << CORE_MICRO_VERSION << " (" << CORE_BUILD_DATE << ")" << std::endl; } }; PrintVersion CORE_VERSION; } // unnamed namespace #endif +#endif // EMSCRIPTEN + } // namespace Dali