[CMAKE]: Build more stuff.
authorSir Richard <sir_richard@svn.reactos.org>
Sun, 25 Jul 2010 21:24:00 +0000 (21:24 +0000)
committerSir Richard <sir_richard@svn.reactos.org>
Sun, 25 Jul 2010 21:24:00 +0000 (21:24 +0000)
svn path=/branches/cmake-bringup/; revision=48264

lib/sdk/CMakeLists.txt
lib/sdk/delayimp/CMakeLists.txt [new file with mode: 0644]
lib/sdk/dxguid/CMakeLists.txt [new file with mode: 0644]
lib/sdk/ioevent/CMakeLists.txt [new file with mode: 0644]
lib/sdk/nt/CMakeLists.txt [new file with mode: 0644]
lib/sdk/scrnsave/CMakeLists.txt [new file with mode: 0644]
lib/sdk/strmiids/CMakeLists.txt [new file with mode: 0644]
lib/sdk/uuid/CMakeLists.txt [new file with mode: 0644]
lib/sdk/wdmguid/CMakeLists.txt [new file with mode: 0644]

index 60d3b6b..5b0086b 100644 (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)
\ No newline at end of file
diff --git a/lib/sdk/delayimp/CMakeLists.txt b/lib/sdk/delayimp/CMakeLists.txt
new file mode 100644 (file)
index 0000000..0d1deea
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(delayimp ${SOURCE})
\ No newline at end of file
diff --git a/lib/sdk/dxguid/CMakeLists.txt b/lib/sdk/dxguid/CMakeLists.txt
new file mode 100644 (file)
index 0000000..f2afd86
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(dxguid ${SOURCE})
\ No newline at end of file
diff --git a/lib/sdk/ioevent/CMakeLists.txt b/lib/sdk/ioevent/CMakeLists.txt
new file mode 100644 (file)
index 0000000..41a2900
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(ioevent ${SOURCE})
\ No newline at end of file
diff --git a/lib/sdk/nt/CMakeLists.txt b/lib/sdk/nt/CMakeLists.txt
new file mode 100644 (file)
index 0000000..26e574a
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(nt ${SOURCE})
\ No newline at end of file
diff --git a/lib/sdk/scrnsave/CMakeLists.txt b/lib/sdk/scrnsave/CMakeLists.txt
new file mode 100644 (file)
index 0000000..22b19ae
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(scrnsave ${SOURCE})
\ No newline at end of file
diff --git a/lib/sdk/strmiids/CMakeLists.txt b/lib/sdk/strmiids/CMakeLists.txt
new file mode 100644 (file)
index 0000000..5efe2b5
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(strmiids ${SOURCE})
\ No newline at end of file
diff --git a/lib/sdk/uuid/CMakeLists.txt b/lib/sdk/uuid/CMakeLists.txt
new file mode 100644 (file)
index 0000000..a6d261c
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(uuid ${SOURCE})
\ No newline at end of file
diff --git a/lib/sdk/wdmguid/CMakeLists.txt b/lib/sdk/wdmguid/CMakeLists.txt
new file mode 100644 (file)
index 0000000..4bf751b
--- /dev/null
@@ -0,0 +1,4 @@
+
+file(GLOB_RECURSE SOURCE "*.c")
+
+add_library(wdmguid ${SOURCE})
\ No newline at end of file