/* Copyright 2006 Paul Querna * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @file pwt_version.h * @brief Defines the Proton Web Toolkit's version information. */ #ifndef PWT_VERSION_H #define PWT_VERSION_H #include "apr_general.h" #define PWT_MAJOR_VERSION 0 #define PWT_MINOR_VERSION 1 #define PWT_PATCH_VERSION 0 #define PWT_DEVBUILD_BOOLEAN 1 #if PWT_DEVBUILD_BOOLEAN #define PWT_VER_ADD_STRING "-dev" #else #define PWT_VER_ADD_STRING "-release" #endif #define PWT_VERSION_STRING APR_STRINGIFY(PWT_MAJOR_VERSION) "." \ APR_STRINGIFY(PWT_MINOR_VERSION) "." \ APR_STRINGIFY(PWT_PATCH_VERSION) \ PWT_VER_ADD_STRING #endif /* PWT_VERSION_H */