mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CMAKE]
- We do have oldnames lib now. - Add proper psdk dependency for libxml2. svn path=/branches/cmake-bringup/; revision=48336
This commit is contained in:
parent
e7c36f373f
commit
666ab7d918
1 changed files with 2 additions and 2 deletions
4
lib/3rdparty/libxml2/CMakeLists.txt
vendored
4
lib/3rdparty/libxml2/CMakeLists.txt
vendored
|
@ -3,8 +3,6 @@ include_directories(./include)
|
|||
|
||||
add_definitions(-D__MINGW32__ -DLIBXML_STATIC -D_REENTRANT -DHAVE_WIN32_THREADS -D_MBCS -D_WINDOWS -DWIN32 -DHAVE_CONFIG_H)
|
||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||
# FIXME: workarounds until we have a proper oldnames library
|
||||
add_definitions(-Dgetcwd=_getcwd -Dclose=_close -Dwrite=_write -Dread=_read -Dopen=_open)
|
||||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
LIST(REMOVE_ITEM SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/runsuite.c)
|
||||
|
@ -35,3 +33,5 @@ LIST(REMOVE_ITEM SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/triostr.c)
|
|||
LIST(REMOVE_ITEM SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/xmlint.c)
|
||||
|
||||
add_library(libxml2 ${SOURCE})
|
||||
target_link_libraries(libxml2 oldnames)
|
||||
add_dependencies(libxml2 psdk)
|
Loading…
Reference in a new issue