summaryrefslogtreecommitdiff
path: root/toolchain.nightly
diff options
context:
space:
mode:
Diffstat (limited to 'toolchain.nightly')
-rw-r--r--toolchain.nightly33
1 files changed, 0 insertions, 33 deletions
diff --git a/toolchain.nightly b/toolchain.nightly
deleted file mode 100644
index 6093a82f8..000000000
--- a/toolchain.nightly
+++ /dev/null
@@ -1,33 +0,0 @@
-# the name of the target operating system
-SET(CMAKE_SYSTEM_NAME Windows)
-
-# toolchain prefix, can be overridden by -DTOOLCHAIN=...
-# IF (NOT TOOLCHAIN)
-SET(TOOLCHAIN "i586-mingw32msvc-")
-# ENDIF()
-
-# which compilers to use for C and C++
-SET(CMAKE_C_COMPILER ${TOOLCHAIN}gcc)
-SET(CMAKE_CXX_COMPILER ${TOOLCHAIN}g++)
-SET(CMAKE_RC_COMPILER ${TOOLCHAIN}windres)
-
-SET(CMAKE_INSTALL_PREFIX ./win)
-SET(CMAKE_BUILD_TYPE Release)
-
-SET(SDLIMAGE_INCLUDE_DIR ./packaging/windows/libs/include/SDL)
-SET(SDLMIXER_INCLUDE_DIR ./packaging/windows/libs/include/SDL)
-SET(SDLNET_INCLUDE_DIR ./packaging/windows/libs/include/SDL)
-SET(SDLTTF_INCLUDE_DIR ./packaging/windows/libs/include/SDL)
-SET(SDL_INCLUDE_DIR ./packaging/windows/libs/include/SDL)
-SET(ENABLE_MANASERV OFF)
-
-# here is the target environment located
-SET(CMAKE_FIND_ROOT_PATH /usr/i586-mingw32msvc ./packaging/windows/ )
-
-# adjust the default behaviour of the FIND_XXX() commands:
-# search headers and libraries in the target environment, search
-# programs in the host environment
-set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
-set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
-set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
-