This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/piqt/CMakeLists.txt

14 lines
379 B
CMake

project(piqt)
cmake_minimum_required(VERSION 2.6)
if(NOT LIBPROJECT)
find_package(PIP REQUIRED)
endif()
find_package(QAD REQUIRED)
include_directories(${PIP_INCLUDES} ${QAD_INCLUDES})
set(LIBS ${PIP_LIBRARY} ${QAD_UTILS_LIBRARY})
qt_project(${PROJECT_NAME} "LIB" "${LIBS}" H CPP)
if(LIBPROJECT)
include(SDKMacros)
sdk_install("" "${PROJECT_NAME}" "${H}")
endif()