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