Просмотр исходного кода

Fixes issue #174

Moved dl down in the link list for the PolycodePlayer and StandalonePlayer targets. See http://www.network-theory.co.uk/docs/gccintro/gccintro_18.html
cib 13 лет назад
Родитель
Сommit
4db04dd1d0
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Player/Contents/CMakeLists.txt

+ 2 - 2
Player/Contents/CMakeLists.txt

@@ -378,7 +378,6 @@ INCLUDE_DIRECTORIES(
 
     TARGET_LINK_LIBRARIES(PolycodePlayer 
 	rt
-	dl
 	pthread
         PolycodeLua 
         Polycore 
@@ -393,6 +392,7 @@ INCLUDE_DIRECTORIES(
         ${ZLIB_LIBRARY}
         ${OPENGL_LIBRARIES}
         ${SDL_LIBRARY}
+	dl
 	Physics2DLua
 	Physics3DLua
 	UILua
@@ -414,7 +414,6 @@ INCLUDE_DIRECTORIES(
 
     TARGET_LINK_LIBRARIES(StandalonePlayer 
 	rt
-	dl
 	pthread
         PolycodeLua 
         Polycore 
@@ -429,6 +428,7 @@ INCLUDE_DIRECTORIES(
         ${ZLIB_LIBRARY}
         ${OPENGL_LIBRARIES}
         ${SDL_LIBRARY}
+	dl
 	Physics2DLua
 	Physics3DLua
 	UILua