reactos/lib/newinflib/CMakeLists.txt
Amine Khaldi 54beb0a8e7 [CMAKE]
* Remove inflib from build. It's been superseded by newinflib.
* Rename newinflibhost and newinflib targets into inflibhost and inflib respectively.
* Update mkhive and usetup to link to the new targets.

svn path=/branches/cmake-bringup/; revision=51362
2011-04-15 22:49:50 +00:00

29 lines
670 B
CMake

list(APPEND GLOBAL_FILES
infcore.c
infget.c
infput.c)
if(CMAKE_CROSSCOMPILING)
list(APPEND SOURCE
infrosgen.c
infrosget.c
infrosput.c)
add_library(inflib ${GLOBAL_FILES} ${SOURCE})
add_dependencies(inflib psdk)
else()
list(APPEND SOURCE
infhostgen.c
infhostget.c
infhostput.c
infhostrtl.c)
add_definitions(-DWINE_UNICODE_API= -D__NO_CTYPE_INLINES -DINFLIB_HOST -DUSE_HOST_WCSFUNCS)
if(NOT MSVC)
add_definitions(-Wpointer-arith -Wwrite-strings)
endif()
add_library(inflibhost ${GLOBAL_FILES} ${SOURCE})
target_link_libraries(inflibhost unicode)
endif()