From bcdce7169448b26b947165d41aa264f6363e15ad Mon Sep 17 00:00:00 2001 From: Patrix Date: Sat, 2 Mar 2024 23:50:08 +0100 Subject: [PATCH] Removed hacky windows toolchain files --- windows-x64.cmake | 12 ------------ windows-x86.cmake | 12 ------------ 2 files changed, 24 deletions(-) delete mode 100644 windows-x64.cmake delete mode 100644 windows-x86.cmake diff --git a/windows-x64.cmake b/windows-x64.cmake deleted file mode 100644 index ccc2c31..0000000 --- a/windows-x64.cmake +++ /dev/null @@ -1,12 +0,0 @@ -# Simple toolchain file for compiling under windows -# Usage: cmake .. -DCMAKE_TOOLCHAIN_FILE=windows-x64.cmake - -# specify the target system properties -set(CMAKE_SYSTEM_NAME Windows) - -if (CMAKE_GENERATOR MATCHES "Visual Studio*") - set(CMAKE_GENERATOR_PLATFORM x64 CACHE INTERNAL "") -endif() - -# specify shared library suffix -set(OUT_FILE_SUFFIX "x64") diff --git a/windows-x86.cmake b/windows-x86.cmake deleted file mode 100644 index 9e8d26b..0000000 --- a/windows-x86.cmake +++ /dev/null @@ -1,12 +0,0 @@ -# Simple toolchain file for compiling under windows -# Usage: cmake .. -DCMAKE_TOOLCHAIN_FILE=windows-x86.cmake - -# specify the target system properties -set(CMAKE_SYSTEM_NAME Windows) - -if (CMAKE_GENERATOR MATCHES "Visual Studio*") - set(CMAKE_GENERATOR_PLATFORM Win32 CACHE INTERNAL "") -endif() - -# specify shared library suffix -set(OUT_FILE_SUFFIX "x86")