summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-08-29cmake/msvc: /EHscr generates epilogues, do /EHsc for no checkingStanislaw Halik
2016-08-29cmake/msvc: add useful debug flagsStanislaw Halik
2016-08-29cmake/msvc: only add -Werror= when building opentrackStanislaw Halik
2016-08-28Update README.mdStanisław Halik
2016-08-28Update README.mdStanisław Halik
2016-08-28Update README.mdStanisław Halik
2016-08-28tracker/rs: connect rs_impl to buildStanislaw Halik
Pinging @ph0b.
2016-08-28tracker/pt: merge 2 variables used exactly the same wayStanislaw Halik
2016-08-28tracker/aruco: shutup MSVC /W3 warns in aruco include filesStanislaw Halik
2016-08-28gui/main: fix MSVC crash on exitStanislaw Halik
Qt loads plugins from its install prefix and after main() exits it unloads qgif which has a crash. So disable the Qt install prefix plugins and only use our own directory's contents.
2016-08-28fixup! cmake/msvc: add warning flag logic to toolchain defStanislaw Halik
2016-08-28gui/cmake: be less verboseStanislaw Halik
2016-08-28dinput: shutup MSVC warningStanislaw Halik
2016-08-28cmake/msvc: add warning flag logic to toolchain defStanislaw Halik
2016-08-28cmake: boilerplate stuffStanislaw Halik
- add SOURCES param for extra sources - NO-QT will skip moc invocation entirely
2016-08-26fix linux build: missing symbol N_POINTSDaMichel
2016-08-25options/value: remove outdated commentStanislaw Halik
2016-08-25options/value: always use Qt::AutoConnectionStanislaw Halik
QSlider and value<t> messed up the value in a feedback loop. Incidentally, for our use cases QSlider and value<t> are on the same thread and they'll connect directly. Issue: #427 Reported-by: @DaMichel
2016-08-25options: use non-generic comparison for bundle modification checkStanislaw Halik
The generic QVariant comparison works badly for QList<QPointF>. Create a comparator between two QVariants for base_value in value<tp> ctor, using QVariant::value<tp> which returns right results once it's converted to tp. If a value was registered for a name in a bundle, use that comparator as the comparator for that name. In case conflicting value types were registered always use generic comparison for that name. std::type_index needs to be used here since value<t> can be instantiated in different modules (libraries), resulting in different value for the comparator function pointer. Move group::operator== to bundle type to avoid circular include for connector.h. Also use element_type more consistently in value<tp>.
2016-08-25tracker/rs: disable nodefaultlib. we're using /MT globally now for msvc.Stanislaw Halik
2016-08-25gui: add fixups for qt5 .dll's in msvc buildStanislaw Halik
2016-08-25cmake/msvc: disable /MP, we're using jomStanislaw Halik
2016-08-24tracker/rs: fix MSVC link warningStanislaw Halik
2016-08-24gui: fix install location on win32Stanislaw Halik
2016-08-24remove make-tar, unusedStanislaw Halik
2016-08-23cmake/msvc: typoStanislaw Halik
2016-08-23cmake: remove debug codeStanislaw Halik
2016-08-23gui/main: fix link error on msvc++Stanislaw Halik
2016-08-23logic/tracker: minor nonsenseStanislaw Halik
2016-08-23tracker/udp: minor fixesStanislaw Halik
- use clamp util function - only sleep until the next datagram arrives - check data for NaN before accepting
2016-08-23compat/util: move typical "clamp" function hereStanislaw Halik
2016-08-23cmake/mingw-w64: adjust path for my convenience onlyStanislaw Halik
2016-08-23gui/main-window: fix build on some Debian Qt5Stanislaw Halik
2016-08-23x-plane-plugin: fix buildStanislaw Halik
2016-08-23dinput: lessen logspamStanislaw Halik
2016-08-23cmake: don't try to editbin static libraries. avoid warning.Stanislaw Halik
2016-08-23cmake/msvc: prevent warning when passing shared flags to static libsStanislaw Halik
2016-08-23cmake: refactor boilerplate for projectsStanislaw Halik
Don't rely on a macro that shouldn't be necessary. The information "opentrack_boilerplate" retrieves is now factored out to be easily available to projects themselves. opentrack_boilerplate can now also build executables. When appropriate, target properties are now concatenated rather than replaced.
2016-08-23cmake/mingw-w64: switch to -std=c11 for pure C modeStanislaw Halik
2016-08-23forced commit to note include fix creditStanislaw Halik
Found by: generating precompiled header with the "cotire" cmake library. The plugin can be found at <https://github.com/sakra/cotire> It didn't work due to GNU toolchain bug anyway.
2016-08-23cmake: don't force stuff for msvc linkStanislaw Halik
2016-08-23cmake: go back to c++11Stanislaw Halik
We don't use c++14 features yet, and GNU 5.3.0 has missing make_unique anyway.
2016-08-23add missing #pragma onceStanislaw Halik
2016-08-23gui/process-detector: fix circular includeStanislaw Halik
2016-08-23filter/accela: fix MSVC ODR bugStanislaw Halik
2016-08-23dinput: it's win32-only so don't guardStanislaw Halik
2016-08-23cmake: don't include current source dirStanislaw Halik
Only angle-bracket #include is affected.
2016-08-23cmake/rift: fix link on msvcStanislaw Halik
2016-08-23cmake: define MINGW_HAS_SECURE_APIStanislaw Halik
2016-08-23api/plugins: try not avoiding dlclose(3)Stanislaw Halik