1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-03 11:17:56 +00:00

expansion analyzer now can use libgmp for better analysis

This commit is contained in:
Zeno Rogue
2020-07-05 00:53:02 +02:00
parent 2d7571034b
commit 6f2e7e90d5
4 changed files with 116 additions and 30 deletions

View File

@@ -75,6 +75,10 @@
#define CAP_ZLIB 1
#endif
#ifndef CAP_GMP
#define CAP_GMP 0
#endif
#define CAP_FRAMELIMIT (!ISMOBWEB)
#if ISMOBILE
@@ -458,6 +462,10 @@ typedef unsigned GLuint;
#include <zlib.h>
#endif
#if CAP_GMP
#include <gmpxx.h>
#endif
#if CAP_THREAD
#if OLD_MINGW
#include "mingw.thread.h"