Mercurial > minori
view include/track/constants.h @ 128:859d2a957940
cmake: set CXX_STANDARD to 17
builds: get wget on linux, don't attempt to mount binfmt_misc on win32/64
I'd prefer staying on C++11, but if constexpr is just so damn sexy...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 09 Nov 2023 02:28:22 -0500 |
parents | 39521c47c7a3 |
children |
line wrap: on
line source
#ifndef __track__constants_h #define __track__constants_h #include <string> #include <vector> namespace Track { namespace Constants { extern const std::vector<std::string> default_media_extensions; extern const std::vector<std::string> default_media_players; } } #endif // __track__constants_h