mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CMAKE]
- Fix more dependencies. svn path=/branches/cmake-bringup/; revision=50326
This commit is contained in:
parent
b4e7b22469
commit
74811b583a
5 changed files with 11 additions and 0 deletions
|
@ -4,3 +4,5 @@ add_definitions(
|
||||||
-DROS_Headers)
|
-DROS_Headers)
|
||||||
|
|
||||||
add_library(atlnew atlbase.cpp atlcore.cpp)
|
add_library(atlnew atlbase.cpp atlcore.cpp)
|
||||||
|
add_dependencies(atlnew psdk)
|
||||||
|
|
||||||
|
|
|
@ -3,3 +3,6 @@ add_library(epsapi
|
||||||
enum/drivers.c
|
enum/drivers.c
|
||||||
enum/modules.c
|
enum/modules.c
|
||||||
enum/processes.c)
|
enum/processes.c)
|
||||||
|
|
||||||
|
add_dependencies(epsapi psdk)
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
|
|
||||||
add_library(ntfslib ntfslib.c)
|
add_library(ntfslib ntfslib.c)
|
||||||
|
add_dependencies(ntfslib psdk)
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
|
|
||||||
add_library(vfatxlib fatx.c vfatxlib.c)
|
add_library(vfatxlib fatx.c vfatxlib.c)
|
||||||
|
add_dependencies(vfatxlib psdk)
|
||||||
|
|
||||||
|
|
|
@ -8,3 +8,5 @@ list(APPEND SOURCE
|
||||||
recyclebin_v5_enumerator.c)
|
recyclebin_v5_enumerator.c)
|
||||||
|
|
||||||
add_library(recyclebin ${SOURCE})
|
add_library(recyclebin ${SOURCE})
|
||||||
|
add_dependencies(recyclebin psdk)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue