cotire icon indicating copy to clipboard operation
cotire copied to clipboard

CMake module to speed up builds.

Results 71 cotire issues
Sort by recently updated
recently updated
newest added

Running the default example `/CMakeLists.txt` (top-most CMake Project), via the following command has some interesting command-line settings, which do not seem to actually utilize a pch system. I am running...

I've had this problem since forever with cotire, and the issue is when I generate my cmake solution, the unity generated files are in the output path, the same path...

Cotire 1.8.0 CMake 3.12.2 Xcode 10.1 (on Mojave) Getting problems like this: `error: Build input file cannot be found: '/package_name/Debug/cotire/package_name_template_CXX_unity_1_1.cxx'` Looked and the file exists... Works normally when selecting `Legacy...

Currently, it seems that cotire must be run from a different directory. It would be nice to run cotire as a final step in the CMake process (i.e. at the...

Hello, Using cotire-1.8.0 with CMake 3.10.3, it appears that quoting `CMAKE_${_language}_COMPILER_ARG1` in `cotire_generate_target_script` causes compiler arguments to be lumped together into a single string, resulting in: `set (CMAKE_CXX_COMPILER_ARG1 " -marm...

Given libA and libB which depends on libA, with CMake 3.8 doing a cmake --build libB_unity just builds libB_unity and libA_unity but on CMake 3.9(.4) it also builds libA.

I have a header which is included into every compilation unit using GCC command line argument `-include header.h` Can I apply cotire on this header to use it as precompiled...

Hi First thank you for this great tool! After upgrading my large project from Qt4 to Qt5 the following problem occured. related issue: #69 environment: - OSX 10.11.6 - CMake...

I have a target ``` add_executable(example main.cpp) cotire(example) ``` for which cotire does **not** generate the example_pch target. ``` $ make help | grep pch $ ``` As long as...