mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:32:57 +00:00
[CMAKE]
- Improve most of the static libraries. svn path=/branches/cmake-bringup/; revision=49479
This commit is contained in:
parent
b9041e39bf
commit
30bb25e2f0
21 changed files with 61 additions and 52 deletions
|
@ -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})
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
add_definitions(-DUNICODE -D_UNICODE)
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(delayimp ${SOURCE})
|
||||
add_library(delayimp delayimp.c)
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(dxguid ${SOURCE})
|
||||
add_library(dxguid dxguid-mingw.c)
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(ioevent ${SOURCE})
|
||||
add_library(ioevent ioevent.c)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(strmiids ${SOURCE})
|
||||
add_library(strmiids strmiids.c)
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(wdmguid ${SOURCE})
|
||||
add_library(wdmguid wdmguid.c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue