mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
e16d438002
- Add proper dependencies on psdk. - Parallel build works now. svn path=/branches/cmake-bringup/; revision=48303
21 lines
515 B
CMake
21 lines
515 B
CMake
include_directories(.)
|
|
|
|
SET(GLOBAL_FILES infcore.c infget.c infput.c)
|
|
|
|
if(CMAKE_CROSSCOMPILING)
|
|
|
|
file(GLOB_RECURSE SOURCE "infros*.c")
|
|
add_library(newinflib ${GLOBAL_FILES} ${SOURCE})
|
|
add_dependencies(newinflib psdk)
|
|
|
|
else()
|
|
|
|
file(GLOB_RECURSE SOURCE "infhost*.c")
|
|
|
|
add_definitions(-DWINE_UNICODE_API= -D__NO_CTYPE_INLINES -DINFLIB_HOST -DUSE_HOST_WCSFUNCS)
|
|
add_definitions(-Wpointer-arith -Wwrite-strings)
|
|
add_library(newinflibhost ${GLOBAL_FILES} ${SOURCE})
|
|
target_link_libraries(newinflibhost unicode)
|
|
|
|
endif()
|
|
|