# HG changeset patch
# User unc0rr
# Date 1255773266 0
# Node ID fc8d26d14ed03ebe063d2549da90d99bec88ccba
# Parent  b785c90b93fe649d4ae4cbac57039aef3fee5edf
Fix build

diff -r b785c90b93fe -r fc8d26d14ed0 hedgewars/CMakeLists.txt
--- a/hedgewars/CMakeLists.txt	Sat Oct 17 09:44:22 2009 +0000
+++ b/hedgewars/CMakeLists.txt	Sat Oct 17 09:54:26 2009 +0000
@@ -133,7 +133,7 @@
 		COMMAND "${pascal_compiler}"
 		ARGS ${pascal_compiler_flags}
 		MAIN_DEPENDENCY ${hwengine_project}
-		DEPENDS openalbridge ${engine_sources}
+		DEPENDS ${engine_sources}
 		)
 ELSE()
 #these are the two dependencies for building a universal binary on Mac OS X
@@ -141,7 +141,7 @@
 		COMMAND "ppc386" 
 		ARGS ${pascal_compiler_flags} -ohwengine.386 -CfSSE2
 		MAIN_DEPENDENCY ${hwengine_project}
-		DEPENDS openalbridge ${engine_sources}
+		DEPENDS ${engine_sources}
 		)
 add_custom_target(hwengine.386 ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.386")
 
@@ -149,7 +149,7 @@
 		COMMAND "ppcppc"
 		ARGS ${pascal_compiler_flags} -ohwengine.ppc
 		MAIN_DEPENDENCY ${hwengine_project}
-		DEPENDS openalbridge ${engine_sources}
+		DEPENDS ${engine_sources}
 		)
 add_custom_target(hwengine.ppc ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.ppc")