820 lines
24 KiB
CMake
820 lines
24 KiB
CMake
cmake_minimum_required(VERSION 3.0)
|
|
cmake_policy(SET CMP0017 NEW) # need include() with .cmake
|
|
project(pip)
|
|
set(_PIP_MAJOR 1)
|
|
set(_PIP_MINOR 99)
|
|
set(_PIP_REVISION 1)
|
|
set(_PIP_SUFFIX _prebeta)
|
|
set(_PIP_COMPANY SHS)
|
|
set(_PIP_DOMAIN org.SHS)
|
|
|
|
if ("x${CMAKE_MODULE_PATH}" STREQUAL "x")
|
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
|
endif()
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
|
|
set(PIP_BUILD 1)
|
|
include(CheckFunctionExists)
|
|
include(DeployMacros)
|
|
include(PIPMacros)
|
|
if(NOT DEFINED BUILD_NUMBER)
|
|
set(BUILD_NUMBER 9999)
|
|
endif()
|
|
if("x${BUILD_NUMBER}" STREQUAL "x")
|
|
set(BUILD_NUMBER 0)
|
|
endif()
|
|
|
|
set(_ICU_DEFAULT OFF)
|
|
if((NOT DEFINED WIN32) AND (NOT DEFINED ANDROID_PLATFORM) AND (NOT DEFINED APPLE))
|
|
set(_ICU_DEFAULT ON)
|
|
endif()
|
|
|
|
|
|
# Options
|
|
option(ICU "ICU support for convert codepages" ${_ICU_DEFAULT})
|
|
option(STD_IOSTREAM "Building with std iostream operators support" OFF)
|
|
option(INTROSPECTION "Build with introspection" OFF)
|
|
option(LIB "System install" ON)
|
|
option(STATIC_LIB OFF)
|
|
option(TESTS "Build tests and perform their before install step" OFF)
|
|
set(PIP_UTILS 1)
|
|
if(LIBPROJECT)
|
|
set(PIP_UTILS ${UTILS})
|
|
endif()
|
|
set(CMAKE_CXX_STANDARD_REQUIRED 1)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
|
|
# Basic
|
|
macro(gather_src DIR CPP H H_P)
|
|
set(CS)
|
|
set(HS)
|
|
set(PHS)
|
|
file(GLOB CS "${DIR}/*.cpp")
|
|
file(GLOB HS "${DIR}/*.h")
|
|
file(GLOB PHS "${DIR}/*_p.h")
|
|
list(REMOVE_ITEM HS "${PHS}")
|
|
list(APPEND ${CPP} ${CS})
|
|
list(APPEND ${H} ${HS})
|
|
list(APPEND ${H_P} ${PHS})
|
|
endmacro()
|
|
|
|
set(PIP_SRC_MAIN "lib/main")
|
|
set(PIP_SRC_CONSOLE "lib/console")
|
|
set(PIP_SRC_CRYPT "lib/crypt")
|
|
set(PIP_SRC_COMPRESS "lib/compress")
|
|
set(PIP_SRC_USB "lib/usb")
|
|
set(PIP_SRC_FFTW "lib/fftw")
|
|
set(PIP_SRC_OPENCL "lib/opencl")
|
|
set(PIP_SRC_IO_UTILS "lib/io_utils")
|
|
set(PIP_SRC_CLOUD "lib/cloud")
|
|
set(PIP_SRC_LUA "lib/lua")
|
|
set(PIP_SRC_DIRS ${PIP_SRC_MAIN}
|
|
${PIP_SRC_CONSOLE}
|
|
${PIP_SRC_CRYPT}
|
|
${PIP_SRC_COMPRESS}
|
|
${PIP_SRC_USB}
|
|
${PIP_SRC_FFTW}
|
|
${PIP_SRC_OPENCL}
|
|
${PIP_SRC_IO_UTILS}
|
|
${PIP_SRC_CLOUD}
|
|
${PIP_SRC_LUA}
|
|
)
|
|
set(PIP_LIBS_TARGETS pip)
|
|
set(LIBS_MAIN)
|
|
set(LIBS_STATUS)
|
|
set(HDRS)
|
|
set(PHDRS)
|
|
set(HDR_DIRS)
|
|
|
|
set(PIP_STD_IOSTREAM "no")
|
|
set(PIP_ICU "no")
|
|
set(PIP_INTROSPECTION "no")
|
|
set(PIP_USB "no")
|
|
set(PIP_CRYPT "no")
|
|
set(PIP_CLOUD "no")
|
|
set(PIP_COMPRESS "no")
|
|
set(PIP_FFTW "no")
|
|
set(PIP_OPENCL "no")
|
|
set(PIP_LUA "no")
|
|
set(PIP_IOUTILS "yes")
|
|
set(PIP_UTILS_LIST)
|
|
|
|
if (TESTS)
|
|
include(DownloadGTest)
|
|
set(PIP_CONCURRENT_TEST "lib/concurrent/test")
|
|
endif()
|
|
|
|
if (DEFINED ENV{QNX_HOST} OR PIP_FREERTOS)
|
|
set(STATIC_LIB ON)
|
|
endif()
|
|
|
|
if(STATIC_LIB)
|
|
set(PIP_LIB_TYPE STATIC)
|
|
set(PIP_LIB_TYPE_MSG "Static")
|
|
add_definitions(-DPIP_STATIC_DEFINE)
|
|
else()
|
|
set(PIP_LIB_TYPE SHARED)
|
|
set(PIP_LIB_TYPE_MSG "Shared")
|
|
endif()
|
|
|
|
|
|
# Version
|
|
set_version(PIP
|
|
MAJOR "${_PIP_MAJOR}"
|
|
MINOR "${_PIP_MINOR}"
|
|
REVISION "${_PIP_REVISION}"
|
|
BUILD "${BUILD_NUMBER}"
|
|
SUFFIX "${_PIP_SUFFIX}"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/piversion.h")
|
|
set_deploy_property(pip ${PIP_LIB_TYPE}
|
|
LABEL "PIP main library"
|
|
FULLNAME "${_PIP_DOMAIN}.pip"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${PIP_SRC_MAIN}/piversion.h")
|
|
file(REMOVE "${CMAKE_CURRENT_SOURCE_DIR}/${PIP_SRC_MAIN}/piversion.h")
|
|
endif()
|
|
list(APPEND HDRS "${CMAKE_CURRENT_BINARY_DIR}/piversion.h")
|
|
|
|
if(MINGW)
|
|
find_package(MinGW REQUIRED)
|
|
list(APPEND CMAKE_LIBRARY_PATH ${MINGW_LIB})
|
|
else()
|
|
if(APPLE)
|
|
if(CMAKE_CROSSCOMPILING)
|
|
set(CMAKE_INSTALL_NAME_DIR "@rpath")
|
|
else()
|
|
include_directories(/usr/local/include)
|
|
link_directories(/usr/local/lib)
|
|
endif()
|
|
set(CMAKE_INSTALL_RPATH "@executable_path/../Frameworks;@executable_path/lib;@loader_path/../lib")
|
|
set(CMAKE_MACOSX_RPATH 1)
|
|
else()
|
|
set(CMAKE_INSTALL_RPATH "\$ORIGIN;\$ORIGIN/lib")
|
|
endif()
|
|
endif()
|
|
if(LIB)
|
|
if(WIN32)
|
|
if(MINGW)
|
|
set(CMAKE_INSTALL_PREFIX ${MINGW_DIR})
|
|
endif()
|
|
else()
|
|
if (DEFINED ANDROID_PLATFORM)
|
|
set(CMAKE_INSTALL_PREFIX ${ANDROID_SYSTEM_LIBRARY_PATH}/usr)
|
|
else()
|
|
if(CMAKE_CROSSCOMPILING)
|
|
set(CMAKE_INSTALL_PREFIX ${CMAKE_STAGING_PREFIX})
|
|
else()
|
|
set(CMAKE_INSTALL_PREFIX ${INSTALL_PREFIX}/usr/local)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if (NOT DEFINED PIP_CMG)
|
|
if (CMAKE_CROSSCOMPILING OR (DEFINED ANDROID_PLATFORM))
|
|
set(PIP_CMG "pip_cmg")
|
|
set(PIP_RC "pip_rc")
|
|
set(PIP_DEPLOY_TOOL "deploy_tool")
|
|
else()
|
|
set(PIP_CMG "${CMAKE_CURRENT_BINARY_DIR}/utils/code_model_generator/pip_cmg")
|
|
set(PIP_RC "${CMAKE_CURRENT_BINARY_DIR}/utils/resources_compiler/pip_rc")
|
|
set(PIP_DEPLOY_TOOL "${CMAKE_CURRENT_BINARY_DIR}/utils/deploy_tool/deploy_tool")
|
|
endif()
|
|
endif()
|
|
|
|
|
|
# Compiler
|
|
get_filename_component(C_COMPILER "${CMAKE_C_COMPILER}" NAME)
|
|
|
|
|
|
# Sources
|
|
|
|
# Main lib
|
|
set(PIP_FOLDERS "." "core" "containers" "thread" "system" "io_devices" "io_utils" "console" "math" "code" "geo" "resources" "opencl" "crypt" "introspection" "cloud" "lua")
|
|
include_directories("${PIP_SRC_MAIN}")
|
|
set(PIP_MAIN_FOLDERS)
|
|
foreach(F ${PIP_FOLDERS})
|
|
list(APPEND PIP_MAIN_FOLDERS "\"${PROJECT_SOURCE_DIR}/${PIP_SRC_MAIN}/${F}\"")
|
|
include_directories("${PIP_SRC_MAIN}/${F}")
|
|
gather_src("${PIP_SRC_MAIN}/${F}" CPP_LIB_MAIN HDRS PHDRS)
|
|
endforeach(F)
|
|
# Crypt lib
|
|
gather_src("${PIP_SRC_CRYPT}" CPP_LIB_CRYPT HDRS PHDRS)
|
|
|
|
# Console lib
|
|
gather_src("${PIP_SRC_CONSOLE}" CPP_LIB_CONSOLE HDRS PHDRS)
|
|
|
|
# Compress lib
|
|
gather_src("${PIP_SRC_COMPRESS}" CPP_LIB_COMPRESS HDRS PHDRS)
|
|
|
|
# USB lib
|
|
gather_src("${PIP_SRC_USB}" CPP_LIB_USB HDRS PHDRS)
|
|
|
|
# FFTW lib
|
|
gather_src("${PIP_SRC_FFTW}" CPP_LIB_FFTW HDRS PHDRS)
|
|
|
|
# OpenCL lib
|
|
gather_src("${PIP_SRC_OPENCL}" CPP_LIB_OPENCL HDRS PHDRS)
|
|
|
|
# IO Utils lib
|
|
gather_src("${PIP_SRC_IO_UTILS}" CPP_LIB_IO_UTILS HDRS PHDRS)
|
|
|
|
# Cloud lib
|
|
gather_src("${PIP_SRC_CLOUD}" CPP_LIB_CLOUD HDRS PHDRS)
|
|
|
|
# LUA lib
|
|
gather_src("${PIP_SRC_LUA}" CPP_LIB_LUA HDRS PHDRS)
|
|
|
|
if (TESTS)
|
|
# Concurrent lib tests
|
|
gather_src("${PIP_CONCURRENT_TEST}" CPP_CONCURRENT_TEST HDRS PHDRS)
|
|
endif()
|
|
|
|
if(PIP_FREERTOS)
|
|
add_definitions(-DPIP_FREERTOS)
|
|
set(ICU OFF)
|
|
set(LIB OFF)
|
|
endif()
|
|
|
|
# Check Bessel functions
|
|
set(CMAKE_REQUIRED_INCLUDES math.h)
|
|
set(CMAKE_REQUIRED_LIBRARIES m)
|
|
CHECK_FUNCTION_EXISTS(j0 PIP_MATH_J0)
|
|
CHECK_FUNCTION_EXISTS(j1 PIP_MATH_J1)
|
|
CHECK_FUNCTION_EXISTS(jn PIP_MATH_JN)
|
|
CHECK_FUNCTION_EXISTS(y0 PIP_MATH_Y0)
|
|
CHECK_FUNCTION_EXISTS(y1 PIP_MATH_Y1)
|
|
CHECK_FUNCTION_EXISTS(yn PIP_MATH_YN)
|
|
if(PIP_MATH_J0)
|
|
add_definitions(-DPIP_MATH_J0)
|
|
endif()
|
|
if(PIP_MATH_J1)
|
|
add_definitions(-DPIP_MATH_J1)
|
|
endif()
|
|
if(PIP_MATH_JN)
|
|
add_definitions(-DPIP_MATH_JN)
|
|
endif()
|
|
if(PIP_MATH_Y0)
|
|
add_definitions(-DPIP_MATH_Y0)
|
|
endif()
|
|
if(PIP_MATH_Y1)
|
|
add_definitions(-DPIP_MATH_Y1)
|
|
endif()
|
|
if(PIP_MATH_YN)
|
|
add_definitions(-DPIP_MATH_YN)
|
|
endif()
|
|
|
|
|
|
# Check if RT timers exists
|
|
set(CMAKE_REQUIRED_INCLUDES time.h)
|
|
set(CMAKE_REQUIRED_LIBRARIES )
|
|
if((NOT DEFINED ENV{QNX_HOST}) AND (NOT APPLE) AND (NOT WIN32) AND (NOT DEFINED ANDROID_PLATFORM) AND (NOT PIP_FREERTOS))
|
|
list(APPEND LIBS_MAIN rt)
|
|
set(CMAKE_REQUIRED_LIBRARIES rt)
|
|
endif()
|
|
CHECK_FUNCTION_EXISTS(timer_create PIP_TIMER_RT_0)
|
|
CHECK_FUNCTION_EXISTS(timer_settime PIP_TIMER_RT_1)
|
|
CHECK_FUNCTION_EXISTS(timer_delete PIP_TIMER_RT_2)
|
|
|
|
|
|
# Check if build debug version
|
|
if (CMAKE_BUILD_TYPE MATCHES Debug)
|
|
set(PIP_BUILD_TYPE "Debug")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g3 -Wall")
|
|
add_definitions(-DPIP_DEBUG)
|
|
else()
|
|
set(PIP_BUILD_TYPE "Release")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -Wall")
|
|
endif()
|
|
|
|
|
|
# Check if std::iostream operators support
|
|
if(STD_IOSTREAM)
|
|
set(PIP_STD_IOSTREAM "yes")
|
|
add_definitions(-DPIP_STD_IOSTREAM)
|
|
endif()
|
|
|
|
|
|
# Check if ICU used for PIString and PIChar
|
|
if(ICU)
|
|
set(PIP_ICU "yes")
|
|
add_definitions(-DPIP_ICU)
|
|
list(APPEND LIBS_MAIN icuuc)
|
|
endif()
|
|
|
|
|
|
# Check if PIP should be built with introspection
|
|
set(_PIP_DEFS "")
|
|
set(_PIP_DEFS_FILE "${CMAKE_CURRENT_BINARY_DIR}/pip_defs.h")
|
|
if(INTROSPECTION)
|
|
set(PIP_INTROSPECTION "yes")
|
|
add_definitions(-DPIP_INTROSPECTION)
|
|
set(_PIP_DEFS "PIP_INTROSPECTION")
|
|
endif()
|
|
if ((NOT DEFINED _PIP_SAVED_DEFS) OR (NOT "x${_PIP_SAVED_DEFS}" STREQUAL "x${_PIP_DEFS}"))
|
|
set(_PIP_SAVED_DEFS "${_PIP_DEFS}" CACHE STRING "pip_defs" FORCE)
|
|
file(WRITE ${_PIP_DEFS_FILE} "// This file was generated by PIP CMake, don`t edit it!\n")
|
|
if (NOT "x${_PIP_DEFS}" STREQUAL "x")
|
|
file(APPEND ${_PIP_DEFS_FILE} "#ifndef ${_PIP_DEFS}\n# define ${_PIP_DEFS}\n#endif\n")
|
|
endif()
|
|
endif()
|
|
list(APPEND HDRS ${_PIP_DEFS_FILE})
|
|
#message("${_PIP_DEFS_CHANGED}")
|
|
|
|
|
|
# Check if RT timers exists
|
|
if(PIP_TIMER_RT_0 AND PIP_TIMER_RT_1 AND PIP_TIMER_RT_2)
|
|
set(PIP_TIMERS "Thread, ThreadRT, Pool")
|
|
add_definitions(-DPIP_TIMER_RT)
|
|
else()
|
|
set(PIP_TIMERS "Thread, Pool")
|
|
endif()
|
|
|
|
|
|
|
|
# Add main library
|
|
if(APPLE)
|
|
add_definitions(-D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE)
|
|
endif()
|
|
if ((NOT DEFINED LIBPROJECT) AND (DEFINED ANDROID_PLATFORM))
|
|
include_directories(${ANDROID_SYSTEM_LIBRARY_PATH}/usr/include)
|
|
#message("${ANDROID_SYSTEM_LIBRARY_PATH}/usr/include")
|
|
#message("${ANDROID_NDK}/sysroot/usr/include")
|
|
endif()
|
|
if(NOT PIP_FREERTOS)
|
|
if(WIN32)
|
|
if(${C_COMPILER} STREQUAL "cl.exe")
|
|
else()
|
|
list(APPEND LIBS_MAIN ws2_32 iphlpapi psapi cfgmgr32 setupapi)
|
|
endif()
|
|
else()
|
|
list(APPEND LIBS_MAIN dl)
|
|
if(DEFINED ENV{QNX_HOST})
|
|
list(APPEND LIBS_MAIN socket)
|
|
else()
|
|
if (NOT DEFINED ANDROID_PLATFORM)
|
|
list(APPEND LIBS_MAIN pthread util)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
set(PIP_LIBS)
|
|
if(PIP_FREERTOS)
|
|
set(PIP_LIBS ${LIBS_MAIN})
|
|
else()
|
|
foreach(LIB_ ${LIBS_MAIN})
|
|
find_library(${LIB_}_LIBRARIES ${LIB_})
|
|
set(${LIB_}_FOUND FALSE)
|
|
if(${LIB_}_LIBRARIES)
|
|
set(${LIB_}_FOUND TRUE)
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES ${${LIB_}_LIBRARIES})
|
|
list(APPEND PIP_LIBS ${${LIB_}_LIBRARIES})
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
list(APPEND LIBS_STATUS ${LIBS_MAIN})
|
|
import_version(pip PIP)
|
|
if(WIN32)
|
|
make_rc(pip _RC)
|
|
add_definitions(-DPSAPI_VERSION=1)
|
|
add_library(pip ${PIP_LIB_TYPE} ${CPP_LIB_MAIN} ${HDRS} ${PHDRS} ${_RC})
|
|
if(${C_COMPILER} STREQUAL "cl.exe")
|
|
set(CMAKE_CXX_FLAGS "/O2 /Ob2 /Ot /W0")
|
|
endif()
|
|
else()
|
|
set(${CMAKE_CXX_FLAGS} "${CMAKE_CXX_FLAGS} -fPIC")
|
|
if(DEFINED ENV{QNX_HOST} OR PIP_FREERTOS)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftemplate-depth-32")
|
|
else()
|
|
endif()
|
|
add_library(pip ${PIP_LIB_TYPE} ${CPP_LIB_MAIN})
|
|
endif()
|
|
set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
include(GenerateExportHeader)
|
|
generate_export_header(pip)
|
|
list(APPEND HDRS "${CMAKE_CURRENT_BINARY_DIR}/pip_export.h")
|
|
target_link_libraries(pip ${PIP_LIBS})
|
|
|
|
if (NOT CROSSTOOLS)
|
|
if (NOT PIP_FREERTOS)
|
|
# Check if USB is supported
|
|
find_library(usb_LIBRARIES usb SHARED)
|
|
set(usb_FOUND FALSE)
|
|
if(usb_LIBRARIES)
|
|
set(usb_FOUND TRUE)
|
|
set(PIP_USB "yes")
|
|
import_version(pip_usb pip)
|
|
set_deploy_property(pip_usb ${PIP_LIB_TYPE}
|
|
LABEL "PIP usb support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_usb"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_usb _RC)
|
|
add_definitions(-DPIP_USB)
|
|
add_library(pip_usb ${PIP_LIB_TYPE} ${CPP_LIB_USB} ${_RC})
|
|
target_link_libraries(pip_usb pip ${usb_LIBRARIES})
|
|
list(APPEND LIBS_STATUS usb)
|
|
list(APPEND PIP_LIBS_TARGETS pip_usb)
|
|
endif()
|
|
|
|
|
|
# Add console library
|
|
import_version(pip_console pip)
|
|
set_deploy_property(pip_console ${PIP_LIB_TYPE}
|
|
LABEL "PIP console support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_console"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_console _RC)
|
|
add_library(pip_console ${PIP_LIB_TYPE} ${CPP_LIB_CONSOLE} ${_RC})
|
|
target_link_libraries(pip_console pip)
|
|
list(APPEND PIP_LIBS_TARGETS pip_console)
|
|
|
|
|
|
# Check if PIP support cryptographic encryption/decryption using sodium library
|
|
find_library(sodium_LIBRARIES sodium)
|
|
set(sodium_FOUND FALSE)
|
|
if(sodium_LIBRARIES)
|
|
set(sodium_FOUND TRUE)
|
|
set(PIP_CRYPT "yes")
|
|
set(PIP_IOUTILS "yes (+crypt)")
|
|
set(PIP_CLOUD "yes")
|
|
import_version(pip_crypt pip)
|
|
set_deploy_property(pip_crypt ${PIP_LIB_TYPE}
|
|
LABEL "PIP crypt support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_crypt"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_crypt _RC)
|
|
add_definitions(-DPIP_CRYPT)
|
|
add_library(pip_crypt ${PIP_LIB_TYPE} ${CPP_LIB_CRYPT} ${_RC})
|
|
target_link_libraries(pip_crypt pip ${sodium_LIBRARIES})
|
|
list(APPEND LIBS_STATUS sodium)
|
|
list(APPEND PIP_LIBS_TARGETS pip_crypt)
|
|
endif()
|
|
|
|
|
|
# Check if PIP support compress/decompress using zlib library
|
|
find_library(zlib_LIBRARIES NAMES z zlib)
|
|
set(zlib_FOUND FALSE)
|
|
if(zlib_LIBRARIES)
|
|
set(zlib_FOUND TRUE)
|
|
set(PIP_COMPRESS "yes")
|
|
import_version(pip_compress pip)
|
|
set_deploy_property(pip_compress ${PIP_LIB_TYPE}
|
|
LABEL "PIP compression support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_compress"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_compress _RC)
|
|
add_definitions(-DPIP_COMPRESS)
|
|
add_library(pip_compress ${PIP_LIB_TYPE} ${CPP_LIB_COMPRESS} ${_RC})
|
|
target_link_libraries(pip_compress pip ${zlib_LIBRARIES})
|
|
list(APPEND LIBS_STATUS zlib)
|
|
list(APPEND PIP_LIBS_TARGETS pip_compress)
|
|
endif()
|
|
|
|
|
|
# Check if PIP support fftw3 for PIFFT using in math module
|
|
set(FFTW_LIB_NAME fftw3)
|
|
set(FFTW_LIB_SUFFIXES "" "f" "l" "q")
|
|
set(FFTW_LIB_SUFFIXES2 "" "-3")
|
|
set(FFTW_LIBS)
|
|
set(FFTW_ABS_LIBS)
|
|
set(CMAKE_REQUIRED_INCLUDES fftw3.h)
|
|
foreach(FFTW_S_ IN LISTS FFTW_LIB_SUFFIXES)
|
|
set(FFTW_BREAK false)
|
|
foreach(FFTW_S2_ IN LISTS FFTW_LIB_SUFFIXES2)
|
|
if(NOT FFTW_BREAK)
|
|
set(FFTW_CLN "${FFTW_LIB_NAME}${FFTW_S_}${FFTW_S2_}")
|
|
set(FFTW_CLNT "${FFTW_LIB_NAME}${FFTW_S_}_threads${FFTW_S2_}")
|
|
find_library(${FFTW_CLN}_LIBRARIES ${FFTW_CLN})
|
|
find_library(${FFTW_CLNT}_LIBRARIES ${FFTW_CLNT})
|
|
set(${FFTW_CLN}_FOUND FALSE)
|
|
set(${FFTW_CLNT}_FOUND FALSE)
|
|
if(${FFTW_CLN}_LIBRARIES)
|
|
set(${FFTW_CLN}_FOUND TRUE)
|
|
list(APPEND FFTW_LIBS "${FFTW_CLN}")
|
|
list(APPEND FFTW_ABS_LIBS "${${FFTW_CLN}_LIBRARIES}")
|
|
set(${FFTW_CLN}_CTS "${FFTW_CLN}")
|
|
if(${FFTW_CLNT}_FLIBRARIES)
|
|
set(${FFTW_CLNT}_FOUND TRUE)
|
|
list(APPEND FFTW_LIBS "${FFTW_CLNT}")
|
|
list(APPEND FFTW_ABS_LIBS "${${FFTW_CLNT}_LIBRARIES}")
|
|
list(APPEND ${FFTW_CLN}_CTS "${FFTW_CLNT}")
|
|
endif()
|
|
set(CMAKE_REQUIRED_LIBRARIES ${${FFTW_CLN}_CTS})
|
|
CHECK_FUNCTION_EXISTS(fftw${FFTW_S_}_make_planner_thread_safe ${FFTW_CLN}_TSFE)
|
|
add_definitions(-DPIP_FFTW${FFTW_S_})
|
|
if(${FFTW_CLN}_TSFE)
|
|
add_definitions(-DPIP_FFTW${FFTW_S_}_THREADSAFE)
|
|
else()
|
|
message(STATUS "Warning: PIFFTW${FFTW_S_}::preparePlan was not threadsafe")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endforeach()
|
|
endforeach()
|
|
if(FFTW_LIBS)
|
|
set(PIP_FFTW "yes (${FFTW_LIBS})")
|
|
import_version(pip_fftw pip)
|
|
set_deploy_property(pip_fftw ${PIP_LIB_TYPE}
|
|
LABEL "PIP FFTW support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_fftw"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_fftw _RC)
|
|
add_library(pip_fftw ${PIP_LIB_TYPE} ${CPP_LIB_FFTW} ${_RC})
|
|
target_link_libraries(pip_fftw pip ${FFTW_ABS_LIBS})
|
|
list(APPEND LIBS_STATUS ${FFTW_LIBS})
|
|
list(APPEND PIP_LIBS_TARGETS pip_fftw)
|
|
endif()
|
|
|
|
|
|
# Check if PIP support OpenCL
|
|
find_package(OpenCL QUIET)
|
|
if(OpenCL_FOUND)
|
|
set(PIP_OPENCL "yes (${OpenCL_VERSION_STRING})")
|
|
import_version(pip_opencl pip)
|
|
set_deploy_property(pip_opencl ${PIP_LIB_TYPE}
|
|
LABEL "PIP OpenCL support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_opencl"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_opencl _RC)
|
|
if(APPLE)
|
|
include_directories(${OpenCL_INCLUDE_DIRS}/Headers)
|
|
else()
|
|
include_directories(${OpenCL_INCLUDE_DIRS})
|
|
endif()
|
|
add_definitions(-DPIP_OPENCL)
|
|
pip_resources(CL_RES "${PIP_SRC_OPENCL}/resources.conf")
|
|
add_library(pip_opencl ${PIP_LIB_TYPE} ${CPP_LIB_OPENCL} ${CL_RES} ${_RC})
|
|
add_dependencies(pip_opencl pip_rc)
|
|
if(${CMAKE_VERSION} VERSION_LESS "3.7.0")
|
|
target_link_libraries(pip_opencl pip OpenCL)
|
|
else()
|
|
target_link_libraries(pip_opencl pip OpenCL::OpenCL)
|
|
endif()
|
|
list(APPEND LIBS_STATUS OpenCL)
|
|
list(APPEND PIP_LIBS_TARGETS pip_opencl)
|
|
endif()
|
|
|
|
|
|
# Check if PIP IO Utils library supports crypt
|
|
set(IO_UTILS_LIBS pip)
|
|
import_version(pip_io_utils pip)
|
|
set_deploy_property(pip_io_utils ${PIP_LIB_TYPE}
|
|
LABEL "PIP I/O utilites"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_io_utils"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_io_utils _RC)
|
|
add_library(pip_io_utils ${PIP_LIB_TYPE} ${CPP_LIB_IO_UTILS} ${_RC})
|
|
if(sodium_FOUND)
|
|
list(APPEND IO_UTILS_LIBS pip_crypt)
|
|
endif()
|
|
target_link_libraries(pip_io_utils ${IO_UTILS_LIBS})
|
|
list(APPEND PIP_LIBS_TARGETS pip_io_utils)
|
|
|
|
|
|
# Enable build tests for concurrent module
|
|
if(PIP_CONCURRENT_TEST)
|
|
add_executable(pip_concurrent_test ${CPP_CONCURRENT_TEST})
|
|
target_link_libraries(pip_concurrent_test pip gtest_main gmock_main)
|
|
add_test(NAME pip_concurrent_test COMMAND tests)
|
|
add_custom_target(pip_concurrent_test_perform ALL COMMAND pip_concurrent_test)
|
|
endif()
|
|
|
|
|
|
# Build cloud library if crypt enabled
|
|
if(sodium_FOUND)
|
|
import_version(pip_cloud pip)
|
|
set_deploy_property(pip_cloud ${PIP_LIB_TYPE}
|
|
LABEL "PIP cloud transport support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_cloud"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_cloud _RC)
|
|
add_definitions(-DPIP_CLOUD)
|
|
add_library(pip_cloud ${PIP_LIB_TYPE} ${CPP_LIB_CLOUD} ${_RC})
|
|
target_link_libraries(pip_cloud pip pip_crypt)
|
|
list(APPEND PIP_LIBS_TARGETS pip_cloud)
|
|
endif()
|
|
|
|
# Check Lua support
|
|
if(MINGW)
|
|
set(LUA_INCLUDE_DIR ${MINGW_INCLUDE})
|
|
endif()
|
|
find_package(Lua QUIET)
|
|
if (LUA_FOUND)
|
|
set(PIP_LUA "yes (${LUA_VERSION_STRING})")
|
|
import_version(pip_lua pip)
|
|
set_deploy_property(pip_lua ${PIP_LIB_TYPE}
|
|
LABEL "PIP Lua support"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_lua"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_lua _RC)
|
|
add_definitions(-DPIP_LUA)
|
|
include_directories(${LUA_INCLUDE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/lib/lua/3rd)
|
|
list(APPEND HDR_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/lib/lua/3rd/LuaBridge")
|
|
add_library(pip_lua ${PIP_LIB_TYPE} ${CPP_LIB_LUA} ${_RC})
|
|
target_link_libraries(pip_lua pip ${LUA_LIBRARIES})
|
|
list(APPEND LIBS_STATUS LUA)
|
|
list(APPEND PIP_LIBS_TARGETS pip_lua)
|
|
endif()
|
|
|
|
# Test program
|
|
if(PIP_UTILS)
|
|
add_executable(pip_test "main.cpp")
|
|
target_link_libraries(pip_test pip)
|
|
if (LUA_FOUND)
|
|
target_link_libraries(pip_test pip_lua ${LUA_LIBRARIES})
|
|
endif()
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(PIP_CRYPT "yes")
|
|
set(PIP_COMPRESS "yes")
|
|
add_definitions(-DPIP_CRYPT)
|
|
add_library(pip_crypt ${PIP_LIB_TYPE} ${CPP_LIB_CRYPT})
|
|
target_link_libraries(pip_crypt pip)
|
|
list(APPEND PIP_LIBS_TARGETS pip_crypt)
|
|
set(IO_UTILS_LIBS pip)
|
|
add_library(pip_io_utils ${PIP_LIB_TYPE} ${CPP_LIB_IO_UTILS})
|
|
list(APPEND IO_UTILS_LIBS pip_crypt)
|
|
target_link_libraries(pip_io_utils ${IO_UTILS_LIBS})
|
|
list(APPEND PIP_LIBS_TARGETS pip_io_utils)
|
|
add_definitions(-DPIP_COMPRESS)
|
|
add_library(pip_compress ${PIP_LIB_TYPE} ${CPP_LIB_COMPRESS})
|
|
target_link_libraries(pip_compress pip)
|
|
list(APPEND PIP_LIBS_TARGETS pip_compress)
|
|
|
|
endif()
|
|
endif()
|
|
|
|
# Install
|
|
# Check if system or local install will be used (to system install use "-DLIB=" argument of cmake)
|
|
if(LIB)
|
|
if(WIN32)
|
|
if(MINGW)
|
|
if (NOT CROSSTOOLS)
|
|
install(FILES ${HDRS} DESTINATION ${MINGW_INCLUDE}/pip)
|
|
install(FILES ${HDRS} DESTINATION ${MINGW_INCLUDE}/pip)
|
|
if(HDR_DIRS)
|
|
install(DIRECTORY ${HDR_DIRS} DESTINATION ${MINGW_INCLUDE}/pip)
|
|
endif()
|
|
install(TARGETS ${PIP_LIBS_TARGETS} ARCHIVE DESTINATION ${MINGW_LIB})
|
|
endif()
|
|
install(TARGETS ${PIP_LIBS_TARGETS} RUNTIME DESTINATION ${MINGW_BIN})
|
|
find_library(STDLIB "stdc++-6" PATHS ${MINGW_BIN} NO_DEFAULT_PATH)
|
|
find_library(STDLIB "stdc++-6")
|
|
#message("${STDLIB}")
|
|
if (STDLIB)
|
|
file(COPY "${STDLIB}" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/utils/code_model_generator")
|
|
file(COPY "${STDLIB}" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/utils/resources_compiler")
|
|
file(COPY "${STDLIB}" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/utils/deploy_tool")
|
|
endif()
|
|
else()
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/pip_export.h DESTINATION include)
|
|
endif()
|
|
else()
|
|
if (NOT CROSSTOOLS)
|
|
install(FILES ${HDRS} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/pip)
|
|
if(HDR_DIRS)
|
|
install(DIRECTORY ${HDR_DIRS} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/pip)
|
|
endif()
|
|
endif()
|
|
install(TARGETS ${PIP_LIBS_TARGETS} DESTINATION ${CMAKE_INSTALL_PREFIX}/lib)
|
|
endif()
|
|
file(GLOB CMAKES "cmake/*.cmake" "cmake/*.in" "cmake/android_debug.keystore")
|
|
install(FILES ${CMAKES} DESTINATION ${CMAKE_ROOT}/Modules)
|
|
else()
|
|
if(NOT PIP_FREERTOS)
|
|
if(WIN32)
|
|
install(TARGETS ${PIP_LIBS_TARGETS} RUNTIME DESTINATION bin)
|
|
install(TARGETS ${PIP_LIBS_TARGETS} ARCHIVE DESTINATION lib)
|
|
else()
|
|
install(TARGETS ${PIP_LIBS_TARGETS} DESTINATION lib)
|
|
endif()
|
|
install(FILES ${HDRS} DESTINATION include/pip)
|
|
if(HDR_DIRS)
|
|
install(DIRECTORY ${HDR_DIRS} DESTINATION include/pip)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT PIP_FREERTOS)
|
|
|
|
# Auxiliary
|
|
if (NOT CROSSTOOLS)
|
|
add_subdirectory("${PIP_SRC_MAIN}/auxiliary/piterminal")
|
|
endif()
|
|
|
|
# Utils
|
|
add_subdirectory("utils/code_model_generator")
|
|
add_subdirectory("utils/resources_compiler")
|
|
add_subdirectory("utils/deploy_tool")
|
|
if(PIP_UTILS AND (NOT CROSSTOOLS))
|
|
add_subdirectory("utils/system_test")
|
|
add_subdirectory("utils/udp_file_transfer")
|
|
if(sodium_FOUND)
|
|
add_subdirectory("utils/system_daemon")
|
|
add_subdirectory("utils/crypt_tool")
|
|
add_subdirectory("utils/cloud_dispatcher")
|
|
endif()
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
# Libraries messages
|
|
if(DEFINED LIBPROJECT)
|
|
set(PIP_LIBS_TARGETS ${PIP_LIBS_TARGETS} PARENT_SCOPE)
|
|
list(APPEND _ALL_TARGETS ${PIP_LIBS_TARGETS})
|
|
set(_ALL_TARGETS ${_ALL_TARGETS} PARENT_SCOPE)
|
|
endif()
|
|
|
|
#
|
|
# Build Documentation
|
|
#
|
|
if ((NOT PIP_FREERTOS) AND (NOT CROSSTOOLS))
|
|
include(PIPDocumentation)
|
|
find_package(Doxygen)
|
|
if(DOXYGEN_FOUND)
|
|
set(DOXY_PROJECT_NUMBER "${PIP_VERSION}")
|
|
set(DOXY_QHP_CUST_FILTER_ATTRS "\"PIP ${PIP_VERSION}\"")
|
|
set(DOXY_QHP_SECT_FILTER_ATTRS "\"PIP ${PIP_VERSION}\"")
|
|
set(DOXY_EXAMPLE_PATH "\"${PROJECT_SOURCE_DIR}/doc/examples\"")
|
|
set(DOXY_IMAGE_PATH "\"${PROJECT_SOURCE_DIR}/doc/images\"")
|
|
if(DOXYGEN_DOT_EXECUTABLE)
|
|
string(REPLACE "\\" "" _DOT_PATH "${DOXYGEN_DOT_PATH}")
|
|
set(DOXY_DOT_PATH "\"${_DOT_PATH}\"")
|
|
set(DOXY_MSCGEN_PATH "\"${_DOT_PATH}\"")
|
|
set(DOXY_DIA_PATH "\"${_DOT_PATH}\"")
|
|
endif()
|
|
set(DOXY_INPUT)
|
|
foreach(F ${PIP_SRC_DIRS})
|
|
list(APPEND DOXY_INPUT "\"${PROJECT_SOURCE_DIR}/${F}\"")
|
|
endforeach(F)
|
|
string(REPLACE ";" " " DOXY_INPUT "${DOXY_INPUT}")
|
|
string(REPLACE ";" " " DOXY_INCLUDE_PATH "${PIP_MAIN_FOLDERS}")
|
|
add_documentation(doc doc/Doxyfile.in)
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doc/html DESTINATION ../share/doc/pip COMPONENT doc EXCLUDE_FROM_ALL OPTIONAL)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
|
|
message("----------PIP----------")
|
|
message(" Version: ${PIP_VERSION} ")
|
|
message(" Linkage: ${PIP_LIB_TYPE_MSG}")
|
|
message(" Type : ${PIP_BUILD_TYPE}")
|
|
if(LIB)
|
|
message(" Install: \"${CMAKE_INSTALL_PREFIX}\"")
|
|
else()
|
|
if(NOT PIP_FREERTOS)
|
|
message(" Install: local \"bin\", \"lib\" and \"include\"")
|
|
endif()
|
|
endif()
|
|
message("")
|
|
message(" Options:")
|
|
message(" std::iostream: ${PIP_STD_IOSTREAM}")
|
|
message(" ICU strings : ${PIP_ICU}")
|
|
message(" Timer types : ${PIP_TIMERS}")
|
|
message(" Introspection: ${PIP_INTROSPECTION}")
|
|
if(INTROSPECTION)
|
|
message(STATUS " Warning: Introspection reduces the performance!")
|
|
endif()
|
|
message("")
|
|
message(" Modules:")
|
|
message(" USB : ${PIP_USB}")
|
|
message(" Console : yes")
|
|
message(" Crypt : ${PIP_CRYPT}")
|
|
message(" Compress : ${PIP_COMPRESS}")
|
|
message(" FFTW : ${PIP_FFTW}")
|
|
message(" OpenCL : ${PIP_OPENCL}")
|
|
message(" IOUtils : ${PIP_IOUTILS}")
|
|
message(" Cloud : ${PIP_CLOUD}")
|
|
message(" Lua : ${PIP_LUA}")
|
|
message("")
|
|
message(" Utilites:")
|
|
foreach(_util ${PIP_UTILS_LIST})
|
|
message(" * ${_util}")
|
|
endforeach()
|
|
if(NOT PIP_FREERTOS)
|
|
message("")
|
|
message(" Using libraries:")
|
|
foreach(LIB_ ${LIBS_STATUS})
|
|
if(${LIB_}_FOUND)
|
|
message(" ${LIB_} -> ${${LIB_}_LIBRARIES}")
|
|
else()
|
|
message(" ${LIB_} not found, may fail")
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
message("-----------------------")
|