diff options
author | San Jacobs | 2022-08-07 07:56:45 +0200 |
---|---|---|
committer | San Jacobs | 2022-08-07 07:56:45 +0200 |
commit | f850a8e5b64f7018f594b8aa36511caeab00d929 (patch) | |
tree | d2529e4376064630c7772c3a3a843cc71404ff14 /src/main.cpp | |
parent | 969e4465100cc24748f9cd9797beee8e17385f5e (diff) | |
download | satscalc-f850a8e5b64f7018f594b8aa36511caeab00d929.tar.gz satscalc-f850a8e5b64f7018f594b8aa36511caeab00d929.tar.bz2 satscalc-f850a8e5b64f7018f594b8aa36511caeab00d929.zip |
Finally got this compiling on Windows
Diffstat (limited to 'src/main.cpp')
-rwxr-xr-x | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 732d67a..ac5c7e0 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -22,7 +22,7 @@ along with this program. If not, see https://www.gnu.org/licenses/ #include "time.h" #include "test.h" -#ifdef WIN32 +#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__) #define CLEAR std::system("cls") #else #define CLEAR std::cout << "\033[2J\033[1;1H" |