Crow/include/crow/version.h

11 lines
138 B
C++

#pragma once
namespace crow {
#ifdef CROW_MAIN
constexpr char VERSION[] = "master";
#else
extern constexpr char VERSION[];
#endif
}