2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-30 12:10:13 +00:00
metaforce/hecl-gui/quazip/CMakeLists.txt
2018-12-07 15:47:21 -10:00

16 lines
461 B
CMake

project (QuaZip)
cmake_minimum_required(VERSION 2.8)
find_package(Qt5Core)
find_package(ZLIB)
include_directories(${Qt5Core_INCLUDE_DIRS})
# 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)