mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
* All header files used to create the PCB common library now compile as stand alone code. This prevents the need to define them in a specific order to make source code compile properly. It should also now be possible to relocate the source code to build the common PCB library to a separate folder.
16 lines
249 B
C++
16 lines
249 B
C++
/* Date for kicad build version */
|
|
|
|
#ifndef KICAD_BUILD_VERSION_H
|
|
#define KICAD_BUILD_VERSION_H
|
|
|
|
class wxString;
|
|
|
|
|
|
/**
|
|
* Function GetBuildVersion
|
|
* Return the build date and version
|
|
*/
|
|
wxString GetBuildVersion();
|
|
|
|
#endif // KICAD_BUILD_VERSION_H
|