diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-10-13 02:33:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-10-13 04:00:29 +0300 |
commit | d203be43c9e1006672a1a1da6b177fd43f4760c2 (patch) | |
tree | 5a8aa84610405c3b54dff8d38edfa15d08603269 /build/toolchain.nightly | |
parent | d2c132d50f618e8b533cb69d39e3e76d5439def9 (diff) | |
download | plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.gz plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.bz2 plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.xz plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.zip |
Move build scripts and logs to build dir.
Diffstat (limited to 'build/toolchain.nightly')
-rw-r--r-- | build/toolchain.nightly | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/build/toolchain.nightly b/build/toolchain.nightly new file mode 100644 index 000000000..6093a82f8 --- /dev/null +++ b/build/toolchain.nightly @@ -0,0 +1,33 @@ +# 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) + |