Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-10 | cmake: also copy Qt pdb files if they exist | Stanislaw Halik | |
2017-05-10 | cmake/msvc: -Gm requires -Zi | Stanislaw Halik | |
2017-05-10 | cmake/msvc: add -DHAS_EXCEPTIONS=0 | Stanislaw Halik | |
2017-05-10 | cmake: unbreak linker language detect for GNU | Stanislaw Halik | |
2017-05-10 | cmake: APPEND_STRING must have a space in front | Stanislaw Halik | |
2017-05-03 | cmake: conditionalize .pdb install on MSVC | Stanislaw Halik | |
I haven't written the binutils equivalent yet. The official builds will come with debug info but it defaults to disabled. cf. https://github.com/opentrack/opentrack/issues/605#issuecomment-298856218 | |||
2017-05-03 | cmake: simplify | Stanislaw Halik | |
The original was pretty tasteless. | |||
2017-05-03 | cmake: also set .pdb generation, duh | Stanislaw Halik | |
2017-05-03 | cmake: simplify | Stanislaw Halik | |
otr_module is still long but more readable now. There shouldn't be any breaking changes. Also, .pdb install is now enabled. The rationale is that unless the user performs a build on his own, the original .pdb files are long gone. Still need to add splitdebug for Unix installations. | |||
2017-05-03 | revert msvc utf-8 source file encoding | Stanislaw Halik | |
cf. https://github.com/opentrack/opentrack/issues/605#issuecomment-298637288 | |||
2017-05-02 | cmake/msvc: always pass -source-charset | Stanislaw Halik | |
The toolchain file isn't always used. | |||
2017-04-30 | cmake/msvc: don't warn on charset includes | Stanislaw Halik | |
They're in dependencies. | |||
2017-04-29 | cmake/msvc: don't force sse2 for all projects | Stanislaw Halik | |
In particular OpenCV now branches on extensions at runtime. | |||
2017-04-20 | cmake: disable lto miscompiling binaries | Stanislaw Halik | |
2017-04-18 | cmake: remove skip-translation-update cache var | Stanislaw Halik | |
Better way is to checkout .ts files from the current branch after running `make i18n'. | |||
2017-04-12 | cmake/mingw-w64: mess it up again | Stanislaw Halik | |
2017-04-12 | cmake: don't barf out on nonexistent files in lrelease | Stanislaw Halik | |
2017-04-07 | cmake: remove PROJECT() scope from subdirectories | Stanislaw Halik | |
cf. https://bugreports.qt.io/browse/QTCREATORBUG-17955 | |||
2017-04-06 | cmake: PROJECT() must be invoked from inside a macro | Stanislaw Halik | |
Otherwise CMAKE_PROJECT_NAME and PROJECT_NAME are equal when invoked from inside a function. Also, split headers and units into separate variables for further testing. cf. https://bugreports.qt.io/browse/QTCREATORBUG-17955 | |||
2017-04-06 | cmake: update few toolchain files | Stanislaw Halik | |
cf. https://github.com/opentrack/opentrack/issues/586#issuecomment-291313687 | |||
2017-03-30 | cmake: add skipping lupdate again | Stanislaw Halik | |
2017-03-29 | cmake: fix build | Stanislaw Halik | |
2017-03-28 | cmake: fix i18n target | Stanislaw Halik | |
2017-03-28 | trivial only | Stanislaw Halik | |
2017-03-28 | start renaming internal macros as OPENTRACK_* to OTR_* | Stanislaw Halik | |
2017-03-27 | cmake: rename project's function prefix | Stanislaw Halik | |
It's not annoying having to type it anymore. Also "otr_boilerplate" -> "otr_module". | |||
2017-03-27 | cmake/msvc: these are already set in cmake/opentrack-platform | Stanislaw Halik | |
2017-03-27 | cmake/msvc: fix accidental cmdline duplication | Stanislaw Halik | |
2017-03-27 | cmake: fix duplication of -DFOO on cmdline | Stanislaw Halik | |
Also /GR- doesn't belong here. | |||
2017-03-27 | cmake: remove -DNDEBUG from cxxflags automatically | Stanislaw Halik | |
User came complain why ndebug-guard.hpp #error'ed out. | |||
2017-03-24 | cmake: disable RTTI on msvc | Stanislaw Halik | |
2017-03-22 | cmake: oops, output target deleted the file | Stanislaw Halik | |
2017-03-22 | cmake: allow for skipping translation update | Stanislaw Halik | |
2017-03-22 | cmake: don't remove module type from define | Stanislaw Halik | |
2017-03-21 | cmake/msvc: need linker static flags | Stanislaw Halik | |
2017-03-21 | cmake/msvc: remove nosensical conditional | Stanislaw Halik | |
2017-03-21 | cmake/msvc: oh for crying out loud | Stanislaw Halik | |
2017-03-21 | cmake/msvc: do it right this time | Stanislaw Halik | |
2017-03-21 | cmake/msvc: bail on linker errors | Stanislaw Halik | |
2017-03-18 | cmake/msvc: disable truncation warning | Stanislaw Halik | |
2017-03-18 | cmake/msvc: don't sanity-check vcvarsall run | Stanislaw Halik | |
Depended on VC++ 14. | |||
2017-03-17 | cmake/git: don't list that checkout is dirty | Stanislaw Halik | |
Given that i18n stuff regens all the time it's annoying. | |||
2017-03-01 | cmake: delist spurious opencv module | Stanislaw Halik | |
2017-02-25 | cmake/i18n: rebuild .qm if .ts changes | Stanislaw Halik | |
2017-02-25 | cmake/version: don't export from static library | Stanislaw Halik | |
2017-02-24 | cmake: install program sources more robustly | Stanislaw Halik | |
Before it skipped some subdirectory parts. | |||
2017-02-24 | cmake/i18n: fix dependencies | Stanislaw Halik | |
Was broken on Unix make. | |||
2017-02-23 | cmake/i18n: express i18n target deps properly | Stanislaw Halik | |
2017-02-22 | cmake: change translation regen logic | Stanislaw Halik | |
- lupdate runs after every source code change for that module - lrelease depends on .ts files created by lupdate - SDK_REGEN_TRANSLATIONS got removed - file dependencies are expressed right, so parallel build works | |||
2017-02-22 | cmake/i18n: express file dependencies correctly | Stanislaw Halik | |
Otherwise parallel make was doing lupdate -> lrelease out of order, leading to badness. Also build failing unless all .ts files existed. We need a way to bootstrap .ts files obviously. |