Start producing nightly builds of ecode for Linux and Windows, macOS pending (issue SpartanJ/ecode#228)

This commit is contained in:
Martín Lucas Golini
2024-09-29 14:23:54 -03:00
parent cf3ca0d82c
commit e789c15022
6 changed files with 192 additions and 5 deletions

View File

@@ -212,6 +212,18 @@ Process::createWithPseudoTerminal( const std::string& program, const std::vector
#include <iomanip>
#include <sstream>
#define NTDDI_VERSION NTDDI_WIN10_RS5
#ifdef _WIN32_WINDOWS
#undef _WIN32_WINDOWS
#endif
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#ifdef WINVER
#undef WINVER
#endif
#define _WIN32_WINDOWS 0x0602
#define _WIN32_WINNT 0x0602
#define WINVER 0x0602
#include <windows.h>
using namespace EE;

View File

@@ -26,6 +26,18 @@
using namespace EE::System;
#define NTDDI_VERSION NTDDI_WIN10_RS5
#ifdef _WIN32_WINDOWS
#undef _WIN32_WINDOWS
#endif
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#ifdef WINVER
#undef WINVER
#endif
#define _WIN32_WINDOWS 0x0602
#define _WIN32_WINNT 0x0602
#define WINVER 0x0602
#include <comdef.h>
#include <iostream>
#include <string>