From 762f3b9d2a68ca9b16292aa3bf64254701014bff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Mon, 14 Dec 2020 22:38:40 +0100 Subject: [PATCH] [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)