Started to merge @ZobyTwo cmake branch

This commit is contained in:
xawotihs
2015-09-26 21:52:07 +02:00
parent 9e77899535
commit 85f4a4c36a
3112 changed files with 4615 additions and 9 deletions
+15
View File
@@ -0,0 +1,15 @@
#build unzip
SET(SOURCE
ioapi.c
miniunz.c
unzip.c)
include_directories(${ZLIB_INCLUDE_DIR} ${EXTRA_INCLUDES} ${ZLIB_INCLUDE_DIR})
add_library(unzip ${SOURCE})
target_link_libraries(unzip ${ZLIB_LIBRARY})
if(PSP OR UNIX)
set_target_properties(unzip PROPERTIES COMPILE_FLAGS "-Dunix")
endif()