cotire
cotire copied to clipboard
CMake module to speed up builds.
Hello my platform: OSX 10.11.6, CMake v3.10.2, Cotire v1.7.10 I have a project with \*.ui files and use `set( CMAKE_AUTOUIC ON )` The non-cotired `` generates correct include path to...
Hello, i'm moving ActiveMQ-cpp library into CMake, without PCH library builds fine, but if i enable Cotire it adds into Decaf_CXX_prefix.h headers like Windows.h, WinSock2.h, WS2tcpip.h and compiler throw errors...
Yesterday I tried your scripts in my Qt based project, everything seems fine but my visual studio 2015 is not responding when I recompile the whole project with cotire for...
516d7847 (ref: TrinityCore/TrinityCore#21104) **Description:** Building a single .cpp file in Visual Studio 2017 after a Clean Solution results in a build error >1>------ Build started: Project: game, Configuration: Debug x64...
I am about to have ~100 small .dll's (with just a few source files or even just one) in which I plan to use the same manually maintained pch. There...
Hi, When I enable cotire, I get the behaviour, that all .cpp files in the target depend on first .cpp file of the target when compiling with msvc. Looking a...
Hi, first of all thanks for this great cmake module. I use it for precompiled header generation a longer time now. Using qt 5.5.0 git, cmake 3.2.1 , corire 1.7.0...
Some configuration in my CMakeLists.txt is below: ``` add_library(server "server/stdafx.h" ${server_sourcelist} "protocol/c++/msg-server_to_server.pb.cc") add_executable(gameserver ${gameserver_sourcelist} "protocol/c++/data-db.pb.cc" "protocol/c++/data-notdb.pb.cc" "protocol/c++/msg-game_to_client.pb.cc" "protocol/c++/msg-game_to_db.pb.cc" "protocol/c++/msg-game_to_gate.pb.cc") add_executable(gateserver ${gateserver_sourcelist} "protocol/c++/data-db.pb.cc" "protocol/c++/msg-game_to_client.pb.cc" "protocol/c++/msg-game_to_gate.pb.cc") add_executable(dbserver ${dbserver_sourcelist} "protocol/c++/data-db.pb.cc" "protocol/c++/msg-game_to_client.pb.cc" "protocol/c++/msg-game_to_db.pb.cc") add_executable(robot...
Hi, I tried to apply the latest Cotire for my project, but the target dependencies are completely broken if I try to use unity build. My targets are in different...
Stub file used due to [Linker Tools Error LNK2011](https://docs.microsoft.com/en-us/cpp/error-messages/tool-errors/linker-tools-error-lnk2011). Successfully tested with the NMake Makefiles JOM, Ninja and NMake Makefiles generators on Windows, and Ninja and Unix Makefiles generators on...