- Fix ZDBSP compilation on non-Windows system. It tried to use the

viewer regardless of target OS.



SVN r2399 (trunk)
This commit is contained in:
Randy Heit 2010-07-01 00:00:55 +00:00
parent f824fe7a86
commit 983907fd20

View file

@ -118,7 +118,6 @@ set( SOURCES
processor.cpp
processor_udmf.cpp
sc_man.cpp
view.cpp
wad.cpp
nodebuild.cpp
nodebuild_events.cpp
@ -127,6 +126,11 @@ set( SOURCES
nodebuild_utility.cpp
nodebuild_classify_nosse2.cpp
)
if( WIN32 )
set( SOURCES "${SOURCES} view.cpp" )
else( WIN32 )
add_definitions( -DNO_MAP_VIEWER )
endif( WIN32 )
if( SSE_MATTERS )
if( FULL_SSE2 )