Crow/include/crow/version.h

11 lines
118 B
C++

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