Removed hacky windows toolchain files

This commit is contained in:
Patrix
2024-03-02 23:50:08 +01:00
parent 012739f05f
commit bcdce71694
2 changed files with 0 additions and 24 deletions

View File

@@ -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")

View File

@@ -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")