[CMAKE] Add even more missing dependencies on xdk. CORE-9586

svn path=/trunk/; revision=69087
This commit is contained in:
Amine Khaldi 2015-09-07 11:13:09 +00:00
parent 4f3a4a5c04
commit 4544bdcfd0
23 changed files with 29 additions and 11 deletions

View file

@ -4,3 +4,4 @@ list(APPEND SOURCE
meta.c)
add_library(mesa_drv_common STATIC ${SOURCE})
add_dependencies(mesa_drv_common xdk)

View file

@ -70,6 +70,7 @@ list(APPEND SOURCE
precomp.h)
add_library(mesa_main STATIC ${SOURCE})
add_dependencies(mesa_main xdk)
add_pch(mesa_main precomp.h SOURCE)
if(NOT MSVC)

View file

@ -11,4 +11,5 @@ list(APPEND SOURCE
precomp.h)
add_library(mesa_math STATIC ${SOURCE})
add_dependencies(mesa_math xdk)
add_pch(mesa_math precomp.h SOURCE)

View file

@ -28,6 +28,7 @@ list(APPEND SOURCE
precomp.h)
add_library(mesa_swrast STATIC ${SOURCE})
add_dependencies(mesa_swrast xdk)
add_pch(mesa_swrast precomp.h SOURCE)
if(MSVC)

View file

@ -4,3 +4,4 @@ list(APPEND SOURCE
ss_triangle.c)
add_library(mesa_swrast_setup STATIC ${SOURCE})
add_dependencies(mesa_swrast_setup xdk)

View file

@ -18,4 +18,5 @@ list(APPEND SOURCE
precomp.h)
add_library(mesa_tnl STATIC ${SOURCE})
add_dependencies(mesa_tnl xdk)
add_pch(mesa_tnl precomp.h SOURCE)

View file

@ -18,4 +18,5 @@ list(APPEND SOURCE
precomp.h)
add_library(mesa_vbo STATIC ${SOURCE})
add_dependencies(mesa_vbo xdk)
add_pch(mesa_vbo precomp.h SOURCE)

View file

@ -1,9 +1,7 @@
PROJECT(SHELL)
project(SHELL)
set_cpp(WITH_RUNTIME)
add_definitions(-DUNICODE -D_UNICODE)
include_directories(${REACTOS_SOURCE_DIR}/lib/atl)
list(APPEND SOURCE
@ -11,3 +9,4 @@ list(APPEND SOURCE
dde.cpp)
add_library(shelldesktop ${SOURCE})
add_dependencies(shelldesktop xdk)

View file

@ -17,3 +17,4 @@ list(APPEND SOURCE
CStartMenu.cpp)
add_library(shellmenu ${SOURCE})
add_dependencies(shellmenu xdk)

View file

@ -18,3 +18,4 @@ add_library(wine ${SOURCE})
add_dependencies(wine psdk)
add_library(wineldr loader.c)
add_dependencies(wineldr xdk)

View file

@ -47,4 +47,5 @@ add_library(stlport
src/cxa.c
src/c_locale.c)
add_dependencies(stlport xdk)
add_pch(stlport src/stlport_prefix.h SOURCE)

View file

@ -16,7 +16,7 @@ list(APPEND SOURCE
if(CMAKE_CROSSCOMPILING)
add_library(cmlib ${SOURCE})
add_dependencies(cmlib bugcodes)
add_dependencies(cmlib bugcodes xdk)
add_pch(cmlib cmlib.h SOURCE)
else()
add_definitions(

View file

@ -1,2 +1,3 @@
add_library(cportlib cport.c)
add_dependencies(cportlib xdk)

View file

@ -1,5 +1,5 @@
add_library(cryptlib
list(APPEND SOURCE
aes.c
des.c
md4.c
@ -8,3 +8,6 @@ add_library(cryptlib
rc4.c
sha1.c
util.c)
add_library(cryptlib ${SOURCE})
add_dependencies(cryptlib xdk)

View file

@ -1,3 +1,4 @@
set_cpp()
add_library(stdunk cunknown.cpp)
add_dependencies(stdunk xdk)

View file

@ -11,3 +11,4 @@ list(APPEND SOURCE
fpu.c)
add_library(fast486 ${SOURCE})
add_dependencies(fast486 xdk)

View file

@ -14,4 +14,5 @@ list(APPEND SOURCE
vfatlib.h)
add_library(vfatlib ${SOURCE})
add_dependencies(vfatlib xdk)
add_pch(vfatlib vfatlib.h SOURCE)

View file

@ -1,3 +1,4 @@
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys)
add_library(lsalib lsa.c)
add_dependencies(lsalib xdk)

View file

@ -20,3 +20,4 @@ elseif(ARCH STREQUAL "arm")
endif()
add_library(cpprt ${SOURCE} ${cpprt_asm})
add_dependencies(cpprt xdk)

View file

@ -1,2 +1,3 @@
add_library(ioevent ioevent.c)
add_dependencies(ioevent xdk)

View file

@ -19,7 +19,7 @@ list(APPEND SOURCE
mfdrv/init.c
mfdrv/objects.c
mfdrv/text.c
rosglue.c
)
rosglue.c)
add_library(winegdi ${SOURCE})
add_dependencies(winegdi xdk)

View file

@ -1,5 +1,3 @@
list(APPEND SOURCE
settings.c)
add_library(concfg ${SOURCE})
add_library(concfg settings.c)
add_dependencies(concfg xdk)

View file

@ -10,6 +10,7 @@ list(APPEND USERSRV_SOURCE
usersrv/usersrv.h)
add_library(usersrv ${USERSRV_SOURCE})
add_dependencies(usersrv xdk)
add_pch(usersrv usersrv/usersrv.h USERSRV_SOURCE)
#add_object_library(usersrv ${USERSRV_SOURCE})
list(APPEND USERSRV_IMPORT_LIBS basesrv)