add_custom_command(... pip_lang) on ninja brings to resursive cmake and ninja call (

This commit is contained in:
2024-11-15 15:43:03 +03:00
parent ee137b2820
commit 3d07795515
5 changed files with 19 additions and 9 deletions

View File

@@ -484,7 +484,8 @@ if (NOT CROSSTOOLS)
# libmicrohttpd
find_library(microhttpd_LIBRARIES microhttpd HINTS "${MINGW_LIB}")
if (microhttpd_LIBRARIES)
set(_microhttpd_add_libs)
set(microhttpd_FOUND TRUE)
set(_microhttpd_add_libs microhttpd)
if(WIN32)
if("${C_COMPILER}" STREQUAL "cl.exe")
else()
@@ -494,7 +495,9 @@ if (NOT CROSSTOOLS)
list(APPEND _microhttpd_add_libs dl)
find_library(tls_lib gnutls)
if (tls_lib)
list(APPEND _microhttpd_add_libs ${tls_lib})
set(gnutls_FOUND TRUE)
set(gnutls_LIBRARIES "${tls_lib}")
list(APPEND _microhttpd_add_libs gnutls)
endif()
if(DEFINED ENV{QNX_HOST})
list(APPEND _microhttpd_add_libs socket)
@@ -504,8 +507,8 @@ if (NOT CROSSTOOLS)
endif()
endif()
endif()
list(APPEND microhttpd_LIBRARIES "${_microhttpd_add_libs}")
pip_module(http_server "${microhttpd_LIBRARIES}" "PIP HTTP server" "" "" "")
#list(APPEND microhttpd_LIBRARIES "${_microhttpd_add_libs}")
pip_module(http_server "${_microhttpd_add_libs}" "PIP HTTP server" "" "" "")
endif()
# Test program
@@ -563,8 +566,9 @@ endif()
# Translations
set(PIP_LANG)
if (NOT CROSSTOOLS)
pip_translation(PIP_LANG lang/pip_ru.ts)
add_custom_target(pip_lang SOURCES "${PIP_LANG}")
# pip_translation(PIP_LANG lang/pip_ru.ts)
# add_custom_target(pip_lang SOURCES "${PIP_LANG}")
file(GLOB PIP_LANG "lang/*.btf")
endif()