Updated Windows makefile to automatically build with SPICE if SPICE include files are detected.

ver1_5_1
Chris Laurel 2006-11-21 08:25:00 +00:00
parent 67b477b734
commit 429f14d801
1 changed files with 6 additions and 1 deletions

View File

@ -9,9 +9,14 @@ OUTDIR=Release
OUTDIR=Debug
!ENDIF
#SPICE=enable
CELX=enable
# Automatically build with SPICE if we detect SPICE include files
!if EXIST(..\inc\spice)
SPICE=enable
!ENDIF
# Automatically set the Lua version to 5.1 if we detect Lua 5.1 include
# files.
!IF EXIST(..\inc\lua-5.1)