1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

[Linux/BSD] Include headers for dynamically loaded libraries to simplify build dependencies.

This commit is contained in:
bruvzg
2023-01-12 10:49:20 +02:00
parent 1f22c482e1
commit 5c4fe6339b
162 changed files with 45796 additions and 741 deletions

View File

@@ -0,0 +1,15 @@
/*
* version.h
*/
#define SND_LIB_MAJOR 1 /**< major number of library version */
#define SND_LIB_MINOR 1 /**< minor number of library version */
#define SND_LIB_SUBMINOR 3 /**< subminor number of library version */
#define SND_LIB_EXTRAVER 1000000 /**< extra version number, used mainly for betas */
/** library version */
#define SND_LIB_VERSION ((SND_LIB_MAJOR<<16)|\
(SND_LIB_MINOR<<8)|\
SND_LIB_SUBMINOR)
/** library version (string) */
#define SND_LIB_VERSION_STR "1.1.3"