mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[CMAKE]
Add missing psdk dependency to nt and smlib. Fixes parallel builds. svn path=/branches/cmake-bringup/; revision=49009
This commit is contained in:
parent
08265cb095
commit
3345c4056d
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
|||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(nt ${SOURCE})
|
||||
add_library(nt entry_point.c)
|
||||
add_dependencies(nt psdk)
|
|
@ -1,4 +1,11 @@
|
|||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys)
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
list(APPEND SOURCE
|
||||
compses.c
|
||||
connect.c
|
||||
execpgm.c
|
||||
lookupss.c)
|
||||
|
||||
add_library(smlib ${SOURCE})
|
||||
add_dependencies(smlib psdk)
|
||||
|
|
Loading…
Reference in a new issue