cotire
cotire copied to clipboard
CMake module to speed up builds.
Trying to generate a precompiled header results in error: clang++.exe: warning: argument unused during compilation: '-mthumb' clang++.exe: warning: argument unused during compilation: '-mfpu=vfpv3-d16' clang++.exe: warning: argument unused during compilation: '-mfloat-abi=softfp'...
I'm using cotire at https://github.com/TrinityCore/TrinityCore but I've noticed a slow down in this project development and I was wondering if it is still actively developed or if users moved to...
This is mostly a note for the future. Cmake just added depfile support for add_custom_command and the ninja generator. Hopefully this can be used instead of IMPLICIT_DEPENDS to calculate the...
Hi, I want to build a project that uses [dlib](https://github.com/davisking/dlib). Here's the `CMakeLists.txt`file that I used. ``` CMake cmake_minimum_required(VERSION 3.11) project("dlib example" LANGUAGES CXX) set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake") include(FetchContent) # Fetch Dlib...
Hi, I'm trying to test cotire on my cmake based app. I added all necessary things as was described in manual. When I run compilation it seems to compile everything...
I have a library that uses SSE4.1 and is included as a dependency in my application. I use modern CMake with targets and try to improve build speed with cotire....
I have a interface library with target_compile_features(MyLibrary INTERFACE cxx_std_17) set on it. elsewhere when I do an add_executable(MyExecutable and then target_link_library my MyLibrary interface library onto my executable, when I...
I'd like to include cotire in CMake-oriented Hunter packager. See https://github.com/ruslo/hunter/pull/942. Just download cotire.cmake from Releases works ok, but Hunter does not have any information to put it in nice...
Homebrew fresh installation When trying to use cotire in my project getting the following error ``` In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/include/emmintrin.h:27: In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/include/xmmintrin.h:39: In file included from...
Suppose a CMake project with multiple libraries, sometimes depending on each other, and multiple executable linking to these libraries. To be concrete, suppose `libA` depending on `libD`. The `CMakeLists.txt` of...