Jean-Michaël Celerier

Results 315 issues of Jean-Michaël Celerier

Given this code: ``` cmake_minimum_required(VERSION 3.6) project(foo) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}") include(cotire) add_library(foo a.cpp b.cpp c.cpp) add_library(bar a.cpp b.cpp c.cpp) target_include_directories(foo PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty) target_include_directories(bar SYSTEM PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty) set_property(TARGET foo PROPERTY COTIRE_CXX_PREFIX_HEADER_INIT "${CMAKE_CURRENT_SOURCE_DIR}/prefix.hpp")...

it seems that all the target names, folders, files, etc. changed. See for instance : * https://cmake.org/cmake/help/v3.8/manual/cmake-qt.7.html#manual:cmake-qt(7) (section AUTOMOC), * https://github.com/Kitware/CMake/commit/dfebdd6218d8f146277d75597fccde74b45cdbd2 and specifically * https://github.com/Kitware/CMake/commit/9d1db7d7c3696108fd0fa1162893076d9a59b652

Given ```CMake set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}) project(foo) include(cotire) set(CMAKE_AUTOMOC ON) find_package(Qt5 COMPONENTS Core Widgets) add_library(A a.cpp b.cpp c.cpp) add_library(B d.cpp e.cpp f.cpp) target_link_libraries(A Qt5::Core Qt5::Widgets) target_link_libraries(B A Qt5::Core Qt5::Widgets) cotire(A) cotire(B)...

Repro in attachment [bug-cmake39-automoc.zip](https://github.com/sakra/cotire/files/1184796/bug-cmake39-automoc.zip)

Hello, I have the following case, similar to #56 . When there are targets (let's say `b`) which depends on other targets all in the same CMake tree (let's say...

``` #include int main() { std::vector coords = { 0, 0, 1022, 0, 0, 1024, 1022, 1024, 387, 403, 387.4791259765625, 403.1723327636719, 388.0328369140625, 403.0395812988281, 388.6558227539063, 402.6470947265625, 389.3426818847656, 402.0401611328125, 390.0880126953125, 401.2640380859375, 390.886474609375,...

Hello, for instance here: https://invent.kde.org/qt/qt/qtbase/-/tree/kde/5.15 trying to change branch removes the branch parameter from the url, which gives a 404.

such as https://github.com/cameron314/readerwriterqueue ; it would be interesting to have a complete set of benchmarks for SPSC queues like https://max0x7ba.github.io/atomic_queue/html/benchmarks.html does for MPMC queues

Maybe we can do it simply by specializing avnd::for_each_field(...) for the case of ranges?

enhancement