https://git.reactos.org/?p=reactos.git;a=commitdiff;h=762f3b9d2a68ca9b16292…
commit 762f3b9d2a68ca9b16292aa3bf64254701014bff
Author: Jérôme Gardou <jerome.gardou(a)reactos.org>
AuthorDate: Mon Dec 14 22:38:40 2020 +0100
Commit: Jérôme Gardou <jerome.gardou(a)reactos.org>
CommitDate: Tue Dec 22 13:14:00 2020 +0100
[CMAKE] Add missing dependencies on PSDK
---
dll/win32/msxml3r/CMakeLists.txt | 1 +
dll/win32/mycomput/CMakeLists.txt | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/dll/win32/msxml3r/CMakeLists.txt b/dll/win32/msxml3r/CMakeLists.txt
index eab0a587596..b36ae2fd6a9 100644
--- a/dll/win32/msxml3r/CMakeLists.txt
+++ b/dll/win32/msxml3r/CMakeLists.txt
@@ -1,4 +1,5 @@
add_library(msxml3r MODULE msxml3r.rc)
+add_dependencies(msxml3r psdk)
set_module_type(msxml3r win32dll ENTRYPOINT 0)
add_cd_file(TARGET msxml3r DESTINATION reactos/system32 FOR all)
diff --git a/dll/win32/mycomput/CMakeLists.txt b/dll/win32/mycomput/CMakeLists.txt
index add3ffa0839..28050515d77 100644
--- a/dll/win32/mycomput/CMakeLists.txt
+++ b/dll/win32/mycomput/CMakeLists.txt
@@ -1,7 +1,7 @@
add_library(mycomput MODULE
mycomput.rc)
-
+add_dependencies(mycomput psdk)
set_module_type(mycomput win32dll UNICODE ENTRYPOINT 0)
add_cd_file(TARGET mycomput DESTINATION reactos/system32 FOR all)