[CMAKE] Add missing dependencies on PSDK

This commit is contained in:
Jérôme Gardou 2020-12-14 22:38:40 +01:00
parent 988c682e8c
commit 762f3b9d2a
2 changed files with 2 additions and 1 deletions

View file

@ -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)

View file

@ -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)