[CMAKE]: Build more stuff.

svn path=/branches/cmake-bringup/; revision=48264
This commit is contained in:
Sir Richard 2010-07-25 21:24:00 +00:00
parent 3b4b183c21
commit 4a961b42be
9 changed files with 40 additions and 0 deletions

View file

@ -1,2 +1,10 @@
add_subdirectory(crt)
add_subdirectory(delayimp)
add_subdirectory(dxguid)
add_subdirectory(ioevent)
add_subdirectory(nt)
add_subdirectory(scrnsave)
add_subdirectory(strmiids)
add_subdirectory(uuid)
add_subdirectory(wdmguid)

View file

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

View file

@ -0,0 +1,4 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(dxguid ${SOURCE})

View file

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

View file

@ -0,0 +1,4 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(nt ${SOURCE})

View file

@ -0,0 +1,4 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(scrnsave ${SOURCE})

View file

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

View file

@ -0,0 +1,4 @@
file(GLOB_RECURSE SOURCE "*.c")
add_library(uuid ${SOURCE})

View file

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