mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-11 00:26:28 -04:00
un-un-un-un-un-un-un-un-un-re-enable ModernGL build
This commit is contained in:
parent
d8a491ea7a
commit
923d18d51c
@ -797,19 +797,27 @@ cc_bool Updater_Clean(void) { return true; }
|
||||
#elif defined CC_BUILD_LINUX
|
||||
#if __x86_64__
|
||||
const struct UpdaterInfo Updater_Info = {
|
||||
#ifndef CC_BUILD_GLMODERN
|
||||
"", 1, { { "OpenGL", "ClassiCube" } }
|
||||
#else
|
||||
"&eModernGL is recommended for newer machines (2010 or later)", 2,
|
||||
{
|
||||
{ "ModernGL", "cc-nix64-gl2" },
|
||||
{ "OpenGL", "ClassiCube" }
|
||||
}
|
||||
#endif
|
||||
};
|
||||
#elif __i386__
|
||||
const struct UpdaterInfo Updater_Info = {
|
||||
#ifndef CC_BUILD_GLMODERN
|
||||
"", 1, { { "OpenGL", "ClassiCube.32" } }
|
||||
#else
|
||||
"&eModernGL is recommended for newer machines (2010 or later)", 2,
|
||||
{
|
||||
{ "ModernGL", "cc-nix32-gl2" },
|
||||
{ "OpenGL", "ClassiCube.32" }
|
||||
}
|
||||
#endif
|
||||
};
|
||||
#else
|
||||
const struct UpdaterInfo Updater_Info = { "&eCompile latest source code to update", 0 };
|
||||
@ -817,19 +825,27 @@ cc_bool Updater_Clean(void) { return true; }
|
||||
#elif defined CC_BUILD_MACOS
|
||||
#if __x86_64__
|
||||
const struct UpdaterInfo Updater_Info = {
|
||||
#ifndef CC_BUILD_GLMODERN
|
||||
"", 1, { { "OpenGL", "ClassiCube.64.osx" } }
|
||||
#else
|
||||
"&eModernGL is recommended for newer machines (2010 or later)", 2,
|
||||
{
|
||||
{ "ModernGL", "cc-osx64-gl2" },
|
||||
{ "OpenGL", "ClassiCube.64.osx" }
|
||||
}
|
||||
#endif
|
||||
};
|
||||
#elif __i386__
|
||||
const struct UpdaterInfo Updater_Info = {
|
||||
#ifndef CC_BUILD_GLMODERN
|
||||
"", 1, { { "OpenGL", "ClassiCube.osx" } }
|
||||
#else
|
||||
"&eModernGL is recommended for newer machines (2010 or later)", 2,
|
||||
{
|
||||
{ "ModernGL", "cc-osx32-gl2" },
|
||||
{ "OpenGL", "ClassiCube.osx" }
|
||||
}
|
||||
#endif
|
||||
};
|
||||
#else
|
||||
const struct UpdaterInfo Updater_Info = { "&eCompile latest source code to update", 0 };
|
||||
|
Loading…
x
Reference in New Issue
Block a user