first try, works
This commit is contained in:
@@ -9,6 +9,7 @@ Create imported targets:
|
||||
* PIP::FFTW
|
||||
* PIP::OpenCL
|
||||
* PIP::IOUtils
|
||||
* PIP::ClientServer
|
||||
* PIP::Cloud
|
||||
* PIP::Lua
|
||||
|
||||
@@ -22,7 +23,7 @@ include(SHSTKMacros)
|
||||
|
||||
shstk_set_find_dirs(PIP)
|
||||
|
||||
set(__libs "usb;crypt;console;fftw;compress;io_utils;opencl;cloud;lua")
|
||||
set(__libs "usb;crypt;console;fftw;compress;opencl;io_utils;client_server;cloud;lua")
|
||||
|
||||
if (BUILDING_PIP)
|
||||
#set(_libs "pip;pip_usb;pip_console;pip_crypt;pip_fftw;pip_compress;pip_opencl;pip_io_utils;pip_cloud;pip_lua")
|
||||
@@ -83,15 +84,16 @@ if(PIP_FIND_VERSION VERSION_GREATER PIP_VERSION)
|
||||
message(FATAL_ERROR "PIP version ${PIP_VERSION} is available, but ${PIP_FIND_VERSION} requested!")
|
||||
endif()
|
||||
|
||||
set(__module_usb USB )
|
||||
set(__module_console Console )
|
||||
set(__module_crypt Crypt )
|
||||
set(__module_fftw FFTW )
|
||||
set(__module_compress Compress )
|
||||
set(__module_opencl OpenCL )
|
||||
set(__module_io_utils IOUtils )
|
||||
set(__module_cloud Cloud )
|
||||
set(__module_lua Lua )
|
||||
set(__module_usb USB )
|
||||
set(__module_console Console )
|
||||
set(__module_crypt Crypt )
|
||||
set(__module_fftw FFTW )
|
||||
set(__module_compress Compress )
|
||||
set(__module_opencl OpenCL )
|
||||
set(__module_io_utils IOUtils )
|
||||
set(__module_client_server ClientServer)
|
||||
set(__module_cloud Cloud )
|
||||
set(__module_lua Lua )
|
||||
|
||||
foreach (_l ${__libs})
|
||||
set( __inc_${_l} "")
|
||||
@@ -99,8 +101,9 @@ foreach (_l ${__libs})
|
||||
set(__libs_${_l} "")
|
||||
endforeach()
|
||||
|
||||
set(__deps_io_utils "PIP::Crypt")
|
||||
set(__deps_cloud "PIP::IOUtils")
|
||||
set(__deps_io_utils "PIP::Crypt" )
|
||||
set(__deps_client_server "PIP::IOUtils")
|
||||
set(__deps_cloud "PIP::IOUtils")
|
||||
|
||||
|
||||
if (BUILDING_PIP)
|
||||
|
||||
Reference in New Issue
Block a user