mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[CMAKE]: Build more stuff.
svn path=/branches/cmake-bringup/; revision=48264
This commit is contained in:
parent
3b4b183c21
commit
4a961b42be
9 changed files with 40 additions and 0 deletions
|
@ -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)
|
4
lib/sdk/delayimp/CMakeLists.txt
Normal file
4
lib/sdk/delayimp/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(delayimp ${SOURCE})
|
4
lib/sdk/dxguid/CMakeLists.txt
Normal file
4
lib/sdk/dxguid/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(dxguid ${SOURCE})
|
4
lib/sdk/ioevent/CMakeLists.txt
Normal file
4
lib/sdk/ioevent/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(ioevent ${SOURCE})
|
4
lib/sdk/nt/CMakeLists.txt
Normal file
4
lib/sdk/nt/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(nt ${SOURCE})
|
4
lib/sdk/scrnsave/CMakeLists.txt
Normal file
4
lib/sdk/scrnsave/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(scrnsave ${SOURCE})
|
4
lib/sdk/strmiids/CMakeLists.txt
Normal file
4
lib/sdk/strmiids/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(strmiids ${SOURCE})
|
4
lib/sdk/uuid/CMakeLists.txt
Normal file
4
lib/sdk/uuid/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(uuid ${SOURCE})
|
4
lib/sdk/wdmguid/CMakeLists.txt
Normal file
4
lib/sdk/wdmguid/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(wdmguid ${SOURCE})
|
Loading…
Reference in a new issue