Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
conan install src\win32\conanfile.txt --build=missing
cmake -B build .
cmake --build build --config Release --target PACKAGE
|
|
|
|
|
|
|
|
We can't build against these anyway now as they're too old.
|
|
- Use _MSC_VER for detecting MSVC instead of a custom define.
- Remove MINGW as you can use __MINGW32__ to detect this.
- Stop defining _WIN32 as this will always be defined on Windows.
|
|
|
|
|
|
This reduces binary sizes by several megabytes on my system.
|
|
|
|
|
|
Also clear up warnings that this exposed.
|
|
|
|
This might have been useful two decades ago but on recent hardware
this just makes builds take longer than without them.
|
|
|
|
|
|
|
|
|
|
|
|
This is the minimum version that supports CMAKE_CXX_STANDARD=17.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
To aid build reproducibility, don't include the build date/time if
-DREPRODUCIBLE_BUILD is defined.
Based on the patch provided by Alexis Bienvenüe in the Debian report.
Bug-Debian: https://bugs.debian.org/820152
Patch-Name: reproducible_datetime.diff
|
|
Fix a ton of typos.
|
|
Fix support for passing relative install paths to CMake.
|
|
|
|
|
|
|
|
|
|
|
|
If DESTDIR is set it should be prepended to CMAKE_INSTALL_PREFIX. See
<http://www.cmake.org/cmake/help/v3.2/variable/CMAKE_INSTALL_PREFIX.html>
|
|
This tool is not useful anymore. It just slows the build down.
|
|
|
|
|
|
This is not needed anymore as support for Autotools was removed.
|
|
|