- Improve most of the static libraries.

svn path=/branches/cmake-bringup/; revision=49479
This commit is contained in:
Amine Khaldi 2010-11-05 12:02:12 +00:00
parent b9041e39bf
commit 30bb25e2f0
21 changed files with 61 additions and 52 deletions

View file

@ -410,7 +410,7 @@ list(APPEND CRT_SOURCE
math/amd64/tan.S)
endif(ARCH MATCHES amd64)
add_library(crt ${CRT_SOURCE} ${CMAKE_CURRENT_BINARY_DIR}/crt_precomp.h.gch)
add_library(crt ${CMAKE_CURRENT_BINARY_DIR}/crt_precomp.h.gch ${CRT_SOURCE})
set_property(TARGET crt PROPERTY COMPILE_DEFINITIONS __MINGW_IMPORT=extern USE_MSVCRT_PREFIX _MSVCRT_LIB_ _MSVCRT_ _MT)
add_pch(crt ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${CRT_SOURCE})

View file

@ -1,4 +1,3 @@
add_definitions(-DUNICODE -D_UNICODE)
file(GLOB_RECURSE SOURCE "*.c")
add_library(delayimp ${SOURCE})
add_library(delayimp delayimp.c)

View file

@ -1,3 +1,2 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(dxguid ${SOURCE})
add_library(dxguid dxguid-mingw.c)

View file

@ -1,3 +1,2 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(ioevent ${SOURCE})
add_library(ioevent ioevent.c)

View file

@ -1,6 +1,4 @@
add_definitions(-DUNICODE -D_UNICODE)
file(GLOB_RECURSE SOURCE "*.c")
add_library(scrnsave ${SOURCE})
add_dependencies(scrnsave psdk)
add_library(scrnsave scrnsave.c)
add_dependencies(scrnsave psdk)

View file

@ -1,3 +1,2 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(strmiids ${SOURCE})
add_library(strmiids strmiids.c)

View file

@ -1,3 +1,2 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(wdmguid ${SOURCE})
add_library(wdmguid wdmguid.c)