Detect C++11 features automatically

This commit is contained in:
Tsuda kageyu
2013-04-18 03:23:12 +09:00
parent 10b4bd61e2
commit 4fc2a3bdd8
28 changed files with 214 additions and 125 deletions

View File

@ -3,6 +3,20 @@
/* Define if you have libz */
#cmakedefine HAVE_ZLIB 1
/* Defined if your compiler supports the move semantics */
#cmakedefine SUPPORT_MOVE_SEMANTICS 1
/* Defined if your compiler supports the template alias */
#cmakedefine SUPPORT_TEMPLATE_ALIAS 1
/* Defined if your compiler supports shared_ptr */
#cmakedefine HAVE_STD_SHARED_PTR 1
#cmakedefine HAVE_TR1_SHARED_PTR 1
#cmakedefine HAVE_BOOST_SHARED_PTR 1
/* Defined if your compiler has <codecvt> header */
#cmakedefine HAVE_CODECVT 1
#cmakedefine NO_ITUNES_HACKS 1
#cmakedefine WITH_ASF 1
#cmakedefine WITH_MP4 1