1. 26 Mar, 2021 2 commits
  2. 16 Mar, 2021 2 commits
  3. 14 Mar, 2021 2 commits
  4. 12 Feb, 2021 1 commit
  5. 08 Feb, 2021 7 commits
  6. 06 Feb, 2021 3 commits
  7. 05 Feb, 2021 1 commit
  8. 20 Jan, 2021 2 commits
  9. 19 Jan, 2021 1 commit
  10. 14 Jan, 2021 1 commit
  11. 10 Jan, 2021 1 commit
  12. 08 Jan, 2021 1 commit
  13. 07 Jan, 2021 7 commits
  14. 30 Dec, 2020 2 commits
  15. 29 Dec, 2020 1 commit
  16. 28 Dec, 2020 1 commit
  17. 27 Dec, 2020 1 commit
    • Tachi's avatar
      Modernize CMakeLists.txt · 6cd4d7f2
      Tachi authored
      WIth this I'm trying to fix some of the issues pointed out in #827.
      
      Changes:
      
      Use add_compile_options() instead of modifying CMAKE_CXX_FLAGS.
      
      Use -Og instead of -O0
      (from https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html :
      [-Og] is a better choice than -O0 for producing debuggable code because
      some compiler passes that collect debug information are disabled at -O0)
      
      Fix LTO check (previously it would fail because it checked only
      CMAKE_CXX_FLAGS. This didn't work when properly enabling LTO
      through CMAKE_INTERPROCEDURAL_OPTIMIZATION).
      I'm not sure if I modified it correctly since I don't really understand
      what that check is trying to do in the first place.
      
      Check for Clang or GCC when applying compiler specific flags.
      
      This changes require CMake 3.9 or higher, but I don't think this will
      cause any issues.
      6cd4d7f2
  18. 10 Dec, 2020 1 commit
    • Ian Roddis's avatar
      Rest::Router add client disconnect handlers (#852) · 9a65f409
      Ian Roddis authored
      * - Adding Router::addDisconnectHandler to handle client disconnections.
      - Adding code to call handlers on client disconnection
      
      * - Adding test case for router addDisconnectHandler and associated functionality.
      
      * Changing to 2-space indentation and other formating changes to conform to LLVM style
      
      * More format changes
      Co-authored-by: default avatarIan Roddis <gitlab@ie2r.com>
      9a65f409
  19. 30 Nov, 2020 1 commit
  20. 29 Nov, 2020 2 commits