diff options
-rwxr-xr-x | versionprint.c | 9 | ||||
-rw-r--r-- | win32/.gitignore | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/versionprint.c b/versionprint.c new file mode 100755 index 0000000..cdc9b53 --- /dev/null +++ b/versionprint.c @@ -0,0 +1,9 @@ +#!/usr/bin/tcc -run +#include "version.h" +#include <stdio.h> + +int main(void) { + puts(FMPLAYER_VERSION_STR); + return 0; +} + diff --git a/win32/.gitignore b/win32/.gitignore index a7f5cd1..1f0bb6c 100644 --- a/win32/.gitignore +++ b/win32/.gitignore @@ -4,3 +4,4 @@ fmplayer.zip font.rom upload.sh ym2608_adpcm_rom.bin +lnf.manifest |