From dcc66752082462fb2000f4df5e8bfd83ebc0ac6e Mon Sep 17 00:00:00 2001 From: mq1n Date: Tue, 2 Sep 2025 20:11:49 +0300 Subject: [PATCH] disable build libpoly entrypoint --- src/libpoly/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libpoly/main.cpp b/src/libpoly/main.cpp index 04f6763..b799978 100644 --- a/src/libpoly/main.cpp +++ b/src/libpoly/main.cpp @@ -2,11 +2,15 @@ #include #endif +// #define LIBPOLY_STANDALONE +#ifdef LIBPOLY_STANDALONE + #include "Poly.h" #include #include #include +#include using namespace std; @@ -45,3 +49,4 @@ int main(int argc, char ** argv) return 0; } +#endif