From 867f6018e045b3279163ff4c914c8d82202fe021 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Mon, 11 Nov 2024 00:37:27 +0800 Subject: [PATCH] Small fix on version naming. --- include/N8.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/N8.hpp b/include/N8.hpp index 0f1e7b9..89ae544 100644 --- a/include/N8.hpp +++ b/include/N8.hpp @@ -33,7 +33,7 @@ #elif defined(__linux__) # define N8_BUILD_PLATFORM "linux" #elif defined(__APPLE__) -# define N8_BUILD_PLATFORM "apple" +# define N8_BUILD_PLATFORM "darwin" #elif defined(_WIN32) || defined(_WIN64) || defined(WIN32) || defined(WIN64) # define N8_BUILD_PLATFORM "windows" #else @@ -42,7 +42,7 @@ #ifndef __EMSCRIPTEN__ # define N8_BUILD_TYPE "beta" -# define N8_VERSION "v1.0.0" N8_BUILD_TYPE "-" N8_BUILD_PLATFORM +# define N8_VERSION "v1.0.0-" N8_BUILD_TYPE "-" N8_BUILD_PLATFORM # define N8_BUILD_TIME __TIME__ " " __DATE__ #endif