# Define our host system SET(CMAKE_SYSTEM_NAME Linux) SET(CMAKE_SYSTEM_VERSION 1)# Define the cross compiler locations SET(CMAKE_C_COMPILER /opt/eldk-5.0/armv5te/sysroots/i686-oesdk-linux/usr/bin/armv5te-linux-gnueabi/arm-linux-gnueabi-gcc) SET(CMAKE_CXX_COMPILER /opt/eldk-5.0/armv5te/sysroots/i686-oesdk-linux/usr/bin/armv5te-linux-gnueabi/arm-linux-gnueabi-g++) SET(CMAKE_FIND_ROOT_PATH /opt/eldk-5.0/armv5te/sysroots/i686-oesdk-linux/) SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) # Search for libraries and headers in the target directories only SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) add_definitions(-Wall) set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_ARMEL --sysroot=/opt/eldk-5.0/armv5te/sysroots/arm-linux-gnueabi/" ) set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --sysrooot=/opt/eldk-5.0/armv5te/sysroots/arm-linux-gnueabi/" ) set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Icross/include -Icross/armv5te-linux-gnueabi/include" ) link_directories(${CMAKE_HOME_DIRECTORY}/cross/armv5te-linux-gnueabi/lib)