From 4a961b42bef5c406daa4de86758a31aa19d4ee8f Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Sun, 25 Jul 2010 21:24:00 +0000 Subject: [PATCH] [CMAKE]: Build more stuff. svn path=/branches/cmake-bringup/; revision=48264 --- lib/sdk/CMakeLists.txt | 8 ++++++++ lib/sdk/delayimp/CMakeLists.txt | 4 ++++ lib/sdk/dxguid/CMakeLists.txt | 4 ++++ lib/sdk/ioevent/CMakeLists.txt | 4 ++++ lib/sdk/nt/CMakeLists.txt | 4 ++++ lib/sdk/scrnsave/CMakeLists.txt | 4 ++++ lib/sdk/strmiids/CMakeLists.txt | 4 ++++ lib/sdk/uuid/CMakeLists.txt | 4 ++++ lib/sdk/wdmguid/CMakeLists.txt | 4 ++++ 9 files changed, 40 insertions(+) create mode 100644 lib/sdk/delayimp/CMakeLists.txt create mode 100644 lib/sdk/dxguid/CMakeLists.txt create mode 100644 lib/sdk/ioevent/CMakeLists.txt create mode 100644 lib/sdk/nt/CMakeLists.txt create mode 100644 lib/sdk/scrnsave/CMakeLists.txt create mode 100644 lib/sdk/strmiids/CMakeLists.txt create mode 100644 lib/sdk/uuid/CMakeLists.txt create mode 100644 lib/sdk/wdmguid/CMakeLists.txt diff --git a/lib/sdk/CMakeLists.txt b/lib/sdk/CMakeLists.txt index 60d3b6b6d02..5b0086b0c99 100644 --- a/lib/sdk/CMakeLists.txt +++ b/lib/sdk/CMakeLists.txt @@ -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 index 00000000000..0d1deea852d --- /dev/null +++ b/lib/sdk/delayimp/CMakeLists.txt @@ -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 index 00000000000..f2afd8641c4 --- /dev/null +++ b/lib/sdk/dxguid/CMakeLists.txt @@ -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 index 00000000000..41a29006180 --- /dev/null +++ b/lib/sdk/ioevent/CMakeLists.txt @@ -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 index 00000000000..26e574a2121 --- /dev/null +++ b/lib/sdk/nt/CMakeLists.txt @@ -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 index 00000000000..22b19ae4b2b --- /dev/null +++ b/lib/sdk/scrnsave/CMakeLists.txt @@ -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 index 00000000000..5efe2b546fe --- /dev/null +++ b/lib/sdk/strmiids/CMakeLists.txt @@ -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 index 00000000000..a6d261c31da --- /dev/null +++ b/lib/sdk/uuid/CMakeLists.txt @@ -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 index 00000000000..4bf751bb4e6 --- /dev/null +++ b/lib/sdk/wdmguid/CMakeLists.txt @@ -0,0 +1,4 @@ + +file(GLOB_RECURSE SOURCE "*.c") + +add_library(wdmguid ${SOURCE}) \ No newline at end of file -- 2.17.1