Files
rgbds/include/version.h
ISSOtm 028e7af7d1 Prepare release candidates
We'll use "-rcX" instead of "-pre" to allow multiple ones, jic
Additionally, they will be able to be detected using __RGBDS_RC__
Finally, adapt everything version-related to this new system
2021-03-10 00:06:32 +01:00

20 lines
404 B
C

/*
* This file is part of RGBDS.
*
* Copyright (c) 2017-2018, Antonio Nino Diaz and RGBDS contributors.
*
* SPDX-License-Identifier: MIT
*/
#ifndef EXTERN_VERSION_H
#define EXTERN_VERSION_H
#define PACKAGE_VERSION_MAJOR 0
#define PACKAGE_VERSION_MINOR 4
#define PACKAGE_VERSION_PATCH 2
// #define PACKAGE_VERSION_RC 1
const char *get_package_version_string(void);
#endif /* EXTERN_VERSION_H */