Author: akhaldi
Date: Fri Mar 22 15:22:05 2013
New Revision: 58574
URL:
http://svn.reactos.org/svn/reactos?rev=58574&view=rev
Log:
[OPENGL32]
* Don't import from glu32 anymore.
* Link to libwine for the debugging facilities.
* Fixes build.
Modified:
trunk/reactos/dll/opengl/opengl32/CMakeLists.txt
Modified: trunk/reactos/dll/opengl/opengl32/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/opengl/opengl32/CMakeL…
==============================================================================
--- trunk/reactos/dll/opengl/opengl32/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/opengl/opengl32/CMakeLists.txt [iso-8859-1] Fri Mar 22 15:22:05
2013
@@ -1,4 +1,3 @@
-
spec2def(opengl32.dll opengl32.spec ADD_IMPORTLIB)
@@ -16,19 +15,8 @@
${CMAKE_CURRENT_BINARY_DIR}/opengl32.def)
add_library(opengl32 SHARED ${SOURCE})
-
+target_link_libraries(opengl32 wine)
set_module_type(opengl32 win32dll UNICODE)
-
-add_importlibs(opengl32
- msvcrt
- gdi32
- user32
- advapi32
- glu32
- kernel32
- ntdll)
-
+add_importlibs(opengl32 gdi32 user32 advapi32 msvcrt kernel32 ntdll)
add_pch(opengl32 opengl32.h)
-
add_cd_file(TARGET opengl32 DESTINATION reactos/system32 FOR all)
-