NPL
Neurological Programs and Libraries
version.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2014 Micah C Chambers (micahc.vt@gmail.com)
3  *
4  * NPL is free software: you can redistribute it and/or modify it under the
5  * terms of the BSD 2-Clause License available in LICENSE or at
6  * http://opensource.org/licenses/BSD-2-Clause
7  *
8  ******************************************************************************/
9 #ifndef __version__
10  #if defined(DEBUG)
11  #define __version__ "3.1.6-debug"
12  #elif defined(NDEBUG)
13  #define __version__ "3.1.6-release"
14  #else
15  #define __version__ "3.1.6"
16  #endif
17 #endif