Skip to content

StillGreen-san/sortvis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sorting algo visualization

a visualization thingy for various sorting algorithms

sample

Code

  • written in/with C++ 20
  • uses cmake (find_package)
  • only tested under Windows 10 x64

dependencies

changes made to dependencies

cppcoro/generator.hpp:36:83: note: must be declared with 'noexcept' constexpr std::experimental::suspend_always final_suspend() const { return {}; }

build

avaiable cmake targets:

  • SortVis : user execuatable
  • SortVis-test : test executable

avaiable cmake options:

  • WARNINGS_AS_ERRORS
    • on by default
  • ENABLE_CPPCHECK
    • off by default
  • ENABLE_CLANG_TIDY
    • off by default
    • may complain about disabled exceptions due to LLVM Bug 45356
    • replace all instances of /EHsc with -EHsc in build/ as a workaround
    • should be skipped for test target