mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
29 lines
909 B
CMake
29 lines
909 B
CMake
project (QuaZip)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
set(qt_min_version "4.5.0")
|
|
find_package(Qt4 REQUIRED)
|
|
set(QT_USE_QTGUI false)
|
|
include(${QT_USE_FILE})
|
|
|
|
# Use system zlib on unix and Qt ZLIB on Windows
|
|
IF(UNIX)
|
|
find_package(ZLIB REQUIRED)
|
|
ELSE(UNIX)
|
|
SET(ZLIB_INCLUDE_DIRS "${QT_ROOT}/src/3rdparty/zlib" CACHE STRING "Path to ZLIB headers of Qt")
|
|
SET(ZLIB_LIBRARIES "")
|
|
IF(NOT EXISTS "${ZLIB_INCLUDE_DIRS}/zlib.h")
|
|
MESSAGE("Please specify a valid zlib include dir")
|
|
ENDIF(NOT EXISTS "${ZLIB_INCLUDE_DIRS}/zlib.h")
|
|
ENDIF(UNIX)
|
|
|
|
# All build libraries are moved to this directory
|
|
SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR})
|
|
|
|
set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)")
|
|
set(LIB_DESTINATION "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE STRING "Library directory name" FORCE)
|
|
|
|
add_subdirectory(quazip)
|
|
|
|
install(FILES FindQuaZip.cmake DESTINATION ${CMAKE_ROOT}/Modules)
|