Description: Disable FetchContent module No online operations are permitted during build package. Author: Nicholas Guriev Last-Update: Wed, 22 Jan 2020 21:51:33 +0300 Modified by Brett Gilio on Dec 5, 2020 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,16 +4,7 @@ project(tl-expected VERSION 1.0.0 LANGUAGES CXX) option(EXPECTED_ENABLE_TESTS "Enable tests." ON) -include(FetchContent) -FetchContent_Declare( - tl_cmake - GIT_REPOSITORY https://github.com/TartanLlama/tl-cmake.git -) -FetchContent_GetProperties(tl_cmake) -if(NOT tl_cmake_POPULATED) - FetchContent_Populate(tl_cmake) - set(CMAKE_MODULE_PATH ${tl_cmake_SOURCE_DIR} ${CMAKE_MODULE_PATH}) -endif() +set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/tl-cmake ${CMAKE_MODULE_PATH}) include(add-tl) tl_add_library(expected SOURCES ' value='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-06-03nls: Update translations....* po/doc/guix-cookbook.sv.po: New file. * po/doc/local.mk: Add 'sv' cookbook. * po/doc/po4a.cfg (po4a_langs): Add 'sv'. * doc/local.mk: Add 'sv' cookbook. * doc/htmlxref.cnf: Update URLs for cookbook. * doc/build.scm (%cookbook-languages): Add 'sv'. * doc/guix-cookbook.texi (Top): Mention 'sv' cookbook. Change-Id: Ibfeb7254f583f1c8827e8c2756bbb02880bcba46 Florian Pelz
2024-06-03build: Use the po4a command for the translation generation....* configure.ac (Documentation translation): Remove the po4a-translate command. This command has been replaced by the po4a command and are not used from anywhere. * doc/local.mk ($(srcdir)/%D%/guix.%.texi, $(srcdir)/%D%/guix-cookbook.%.texi) ($(srcdir)/%D%/contributing.%.texi): Use the po4a command instead of the po4a-translate for the translation generation. This eliminates the warning of po4a-translate; "po4a-translate is deprecated. The unified po4a(1) program is more convenient and less error prone." (PO4A_PARAMS): Remove the Texinfo format option. This option is specified in the configuration file (po/doc/po4a.cfg). (dummy_pot): Add a variable for the temporary POT file location. Change-Id: I542b934c3c03b8701e9f86823191224f8b0ccf81 Signed-off-by: Florian Pelz <pelzflorian@pelzflorian.de> gemmaro