Re: [CMake] Additional traffic on cmake.org concerning cmake documentation

2019-01-16 Thread Martin Weber
Am Mittwoch, 16. Januar 2019, 18:24:09 CET schrieb Robert Maynard: > It would not be a problem as it relates to server load for you to > redirect to `https://cmake.org/cmake/help/latest/`, but as frodak17 a There would be no server load of users of the plugin. I plan to change the HTML-links in t

Re: [CMake] Additional traffic on cmake.org concerning cmake documentation

2019-01-16 Thread Martin Weber
Am Dienstag, 15. Januar 2019, 23:20:38 CET schrieb frodak17: > On Tue, Jan 15, 2019 at 3:54 PM Martin Weber > > wrote: > > Hi, > > > > So my question is: Are there any objections regarding the additional IP > > traffic on cmake.org imposed if CmakeEd-users would browse the online > > docs > > in

Re: [CMake] Additional traffic on cmake.org concerning cmake documentation

2019-01-16 Thread Robert Maynard via CMake
It would not be a problem as it relates to server load for you to redirect to `https://cmake.org/cmake/help/latest/`, but as frodak17 a better avenue would to investigate packaging the generated html files ( located in doc/cmake/html/ ). On Tue, Jan 15, 2019 at 2:54 PM Martin Weber wrote: > > Hi,

Re: [CMake] Binaries linking interface library

2019-01-16 Thread Robert Maynard via CMake
The cause of the downstream failure ( cmake adds "-lLibMinimal" to the linker ) is caused by the the cmake install(EXPORT) error. You need to have LibMinimal in your export set so that CMake at export time is aware that it is an interface library and generates the correct import interface target t

[CMake] Integrating Build Date/Time into Binary

2019-01-16 Thread Torsten Robitzki
Hello, we are porting a larger set of projects (~70) to CMake. The current build has a feature to integrate the current timestamp of the build into the final binary / target. If a target is relinked, a header (id.h) is created with the current timestamp, a user provided C file (id.c), including

[CMake] Binaries linking interface library

2019-01-16 Thread Ciccio Pasticcio
Hello all, I've got a simple, header only, interface library. Following the whole CMakeLists.txt CMAKE_MINIMUM_REQUIRED(VERSION 3.0) INCLUDE(CommonLib) PROJECT(LibMinimal) ADD_LIBRARY(${PROJECT_NAME} INTERFACE ) TARGET_INCLUDE_DIRECTORIES(${PROJECT_NAME} INTERFACE "${PROJECT_SOURCE_DIR}/incl