misc/quazip/CMakeLists.txt
author nemo
Fri, 09 Nov 2012 12:29:24 -0500
branchwebgl
changeset 8001 379063958821
parent 7256 5b97b9946cde
permissions -rw-r--r--
Fix why my first attempt to compile main had failed, causing me to ask koda what the secret was. apparently using an OS that ignores case...

set(QT_USE_QTCORE TRUE)

find_package(Qt4 REQUIRED)
if(NOT CROSSAPPLE)
    include(${QT_USE_FILE})
endif()


file(GLOB SRCS "*.c" "*.cpp")
file(GLOB PUBLIC_HEADERS "*.h")
qt4_wrap_cpp(MOC_SRCS "quazipfile.h")
set(SRCS ${SRCS} ${MOC_SRCS})

add_library(quazip STATIC ${SRCS})