iSpike
2.1
Spike conversion library for robotics
|
00001 // <Copyright Holder>. Copyright (C) <Copyright Year(s)>. <License>. 00002 #ifndef HEADER_SRC_APPINFO_H_INCLUDED 00003 #define HEADER_SRC_APPINFO_H_INCLUDED 00004 00005 #include <boost/preprocessor/stringize.hpp> 00006 00007 /* 00008 * AUTO-GENERATION WARNING: 00009 * This file has been automatically generated from "appinfo.h.in.cmake". 00010 * DO NOT edit this file, as any changes will be automatically discarded. 00011 */ 00012 00013 #define APPLICATION_NAME "iSpike" 00014 #define APPLICATION_CODENAME "iSpike" 00015 #define APPLICATION_COPYRIGHT_YEARS "2011" 00016 #define APPLICATION_VERSION_MAJOR 2 00017 /* #undef APPLICATION_VERSION_MINOR */ 00018 /* #undef APPLICATION_VERSION_PATCH */ 00019 #define APPLICATION_VERSION_TYPE "SNAPSHOT" 00020 #define APPLICATION_VERSION_STRING "2.0.0-SNAPSHOT" 00021 #define APPLICATION_VENDOR_ID "Imperial" 00022 #define APPLICATION_VENDOR_NAME "Department of Computing, Imperial College London" 00023 #define APPLICATION_VENDOR_URL "www.imperial.ac.uk" 00024 #define APPLICATION_ID "Imperial" 00025 00026 #ifndef APPLICATION_NAME 00027 # error "Please specify the application name in the top-level CMakeLists.txt file." 00028 #endif 00029 00030 #ifndef APPLICATION_CODENAME 00031 # error "Please specify the application codename in the top-level CMakeLists.txt file." 00032 #endif 00033 00034 #ifndef APPLICATION_COPYRIGHT_YEARS 00035 # error "Please specify the application copyright years (years during which this application was created, edited, or modified) in the top-level CMakeLists.txt file." 00036 #endif 00037 00038 #ifndef APPLICATION_VERSION_MAJOR 00039 # define APPLICATION_VERSOIN_MAJOR 0 00040 #endif 00041 00042 #ifndef APPLICATION_VERSION_MINOR 00043 # define APPLICATION_VERSION_MINOR 0 00044 #endif 00045 00046 #ifndef APPLICATION_VERSION_PATCH 00047 # define APPLICATION_VERSION_PATCH 0 00048 #endif 00049 00050 #ifndef APPLICATION_VERSION_TYPE 00051 # define APPLICATION_VERSION_TYPE "SNAPSHOT" 00052 #endif 00053 00054 #ifndef APPLICATION_VERSION_STRING 00055 # define APPLICATION_VERSION_STRING BOOST_PP_STRINGIZE(APPLICATION_VERSION_MAJOR) "." BOOST_PP_STRINGIZE(APPLICATION_VERSION_MINOR) "." BOOST_PP_STRINGIZE(APPLICATION_VERSION_PATCH) "-" APPLICATION_VERSION_TYPE 00056 #endif 00057 00058 #ifndef APPLICATION_VENDOR_ID 00059 # error "Please specify the application vendor id in the top-level CMakeLists.txt file." 00060 #endif 00061 00062 #ifndef APPLICATION_VENDOR_NAME 00063 # error "Please specify the application vendor name in the top-level CMakeLists.txt file." 00064 #endif 00065 00066 #ifndef APPLICATION_VENDOR_URL 00067 # error "Please specify the application vendor URL in the top-level CMakeLists.txt file." 00068 #endif 00069 00070 #ifndef APPLICATION_ID 00071 # define APPLICATION_ID APPLICATION_VENDOR_ID "." APPLICATION_CODENAME 00072 #endif 00073 00074 #endif