diff options
author | truelight <truelight@openttd.org> | 2007-01-21 14:14:27 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-01-21 14:14:27 +0000 |
commit | 805246015f32d9ecd601c9d6d17513f53ebeab44 (patch) | |
tree | 224ce7e56342b84c5d036a12ac6b6795779a566c /configure | |
parent | 4241f1eb201c501533b865f41076b3623faa8abc (diff) | |
download | openttd-805246015f32d9ecd601c9d6d17513f53ebeab44.tar.xz |
(svn r8304) [WinCE] -Add: added configure detection for WinCE.
Compiling doesn't work, neither does running, but it is a first step in developing an official WinCE port
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -38,7 +38,7 @@ check_params make_cflags_and_ldflags EXE="" -if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "OS2" ]; then +if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "OS2" ] || [ "$os" = "WINCE" ]; then EXE=".exe" fi @@ -78,6 +78,7 @@ SRCS="`< $ROOT_DIR/source.list tr '\r' '\n' | awk ' if ($0 == "BEOS" && "'$os'" != "BEOS") { next; } if ($0 == "WIN32" && "'$os'" != "MINGW" && "'$os'" != "CYGWIN" && "'$os'" != "MSVC" ) { next; } + if ($0 == "WINCE" && "'$os'" != "WINCE") { next; } if ($0 == "MSVC" && "'$os'" != "MSVC") { next; } if ($0 == "DIRECTMUSIC" && "'$with_direct_music'" == "0") { next; } |