2010-07-25 23:54:32 +00:00
|
|
|
|
|
|
|
SET(GLOBAL_FILES infcore.c infget.c infput.c)
|
|
|
|
|
|
|
|
if(CMAKE_CROSSCOMPILING)
|
|
|
|
|
|
|
|
file(GLOB_RECURSE SOURCE "infros*.c")
|
|
|
|
add_library(inflib ${GLOBAL_FILES} ${SOURCE})
|
2010-07-27 12:53:24 +00:00
|
|
|
add_dependencies(inflib psdk)
|
2010-07-25 23:54:32 +00:00
|
|
|
|
|
|
|
else()
|
|
|
|
|
|
|
|
file(GLOB_RECURSE SOURCE "infhost*.c")
|
|
|
|
|
|
|
|
add_definitions(-D__NO_CTYPE_INLINES -DINFLIB_HOST)
|
2010-09-19 17:39:09 +00:00
|
|
|
if(NOT MSVC)
|
2010-07-25 23:54:32 +00:00
|
|
|
add_definitions(-Wpointer-arith -Wconversion -Wstrict-prototypes -Wmissing-prototypes)
|
2010-09-19 17:39:09 +00:00
|
|
|
endif()
|
2010-07-25 23:54:32 +00:00
|
|
|
add_library(inflibhost ${GLOBAL_FILES} ${SOURCE})
|
|
|
|
|
|
|
|
endif()
|