mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
11 lines
138 B
C++
11 lines
138 B
C++
#pragma once
|
|
|
|
namespace crow {
|
|
|
|
#ifdef CROW_MAIN
|
|
constexpr char VERSION[] = "master";
|
|
#else
|
|
extern constexpr char VERSION[];
|
|
#endif
|
|
}
|