diff options
author | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2013-02-08 09:40:01 +0100 |
---|---|---|
committer | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2013-02-08 09:40:01 +0100 |
commit | 35653e6bd56e589a0525c3012a16353420375a6f (patch) | |
tree | 656590cba8c1ba5c199865150e9f4401fefcf14d /cmake/Toolchain_generic.cmake | |
parent | 2dce17ca688920d26694336de74ebd7bcfc0aa20 (diff) | |
download | egawk-35653e6bd56e589a0525c3012a16353420375a6f.tar.gz egawk-35653e6bd56e589a0525c3012a16353420375a6f.tar.bz2 egawk-35653e6bd56e589a0525c3012a16353420375a6f.zip |
Added Toolchain files as examples for cross-compilation.
Diffstat (limited to 'cmake/Toolchain_generic.cmake')
-rw-r--r-- | cmake/Toolchain_generic.cmake | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cmake/Toolchain_generic.cmake b/cmake/Toolchain_generic.cmake new file mode 100644 index 00000000..bbd25593 --- /dev/null +++ b/cmake/Toolchain_generic.cmake @@ -0,0 +1,21 @@ +# http://www.cmake.org/Wiki/CmakeMingw +# http://www.cmake.org/Wiki/CMake_Cross_Compiling#The_toolchain_file + +# the name of the target operating system +SET(CMAKE_SYSTEM_NAME Generic) + +# which compilers to use for C and C++ +# Settings for Ubuntu 12.04.1 LTS +SET(CMAKE_C_COMPILER /usr/bin/gcc) + +# here is the target environment located +# Settings for Ubuntu 12.04.1 LTS +SET(CMAKE_FIND_ROOT_PATH /usr/include) + +# 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) + |