diff options
author | randomdan <randomdan@localhost> | 2012-07-10 15:15:57 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2012-07-10 15:15:57 +0000 |
commit | 52cc8fcfa3f24e38cccf42ee20a08a955e0e616f (patch) | |
tree | 83815a2af41a45f298f8fa89ee764a61a2847c90 | |
parent | Finally convert ytfs to use boost stuff (untested, but it does build) (diff) | |
download | libdbpp-mysql-52cc8fcfa3f24e38cccf42ee20a08a955e0e616f.tar.bz2 libdbpp-mysql-52cc8fcfa3f24e38cccf42ee20a08a955e0e616f.tar.xz libdbpp-mysql-52cc8fcfa3f24e38cccf42ee20a08a955e0e616f.zip |
Migrate all stuff to stricter compilations/links and C++0x builds
-rw-r--r-- | Jamroot.jam | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 794d6de..1c2bea6 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -3,6 +3,13 @@ using gcc ; import type : register ; import generators : register-standard ; +project + : requirements + <variant>release:<cflags>"-std=c++0x" + <variant>debug:<cflags>"-W -Wall -Werror -Wwrite-strings -std=c++0x" + <variant>debug:<linkflags>"-Wl,-z,defs" + ; + import type ; import generators ; import feature ; |