1. 21 Aug, 2015 1 commit
  2. 20 Aug, 2015 6 commits
  3. 16 Aug, 2015 5 commits
  4. 15 Aug, 2015 1 commit
  5. 13 Aug, 2015 1 commit
  6. 11 Aug, 2015 2 commits
  7. 06 Aug, 2015 4 commits
  8. 02 Aug, 2015 2 commits
  9. 24 Jul, 2015 4 commits
  10. 23 Jul, 2015 2 commits
  11. 18 Jul, 2015 4 commits
  12. 17 Jul, 2015 4 commits
  13. 14 Jul, 2015 3 commits
  14. 13 Jul, 2015 1 commit
    • Aziz Baibabaev's avatar
      Replace add_definitions with CMAKE_CXX_FLAGS in cmake file · bd664d9a
      Aziz Baibabaev authored
      When using add_definitions erroneous flags are passed to dll resource compiler under MinGW. This breaks the build for anything linked to dlib, using a dll rc and MinGW.
      
      The proper way is to append to CMAKE_CXX_FLAGS.
      
      For CMake 2.8.12 and higher the proper way is add_compile_options(-Wreturn-type) OR target_compile_options(dlib PRIVATE -Wreturn-type)
      bd664d9a