summaryrefslogtreecommitdiffhomepage
path: root/cmake/opentrack-boilerplate.cmake
AgeCommit message (Collapse)Author
2019-04-13cmake: add more verbose error messageStanislaw Halik
2019-04-05cmake: fix pdb path installStanislaw Halik
Issue: #867
2019-04-05cmake: install shared libs only on win32Stanislaw Halik
Issue: #867
2019-04-05cmake: install shared opencv librariesStanislaw Halik
Issue: #867 Requested by: @Slion
2019-03-14cmake: add otr_module NO-I18NStanislaw Halik
2019-03-02cmake: use `target_compile_definitions()'Stanislaw Halik
2019-02-28cmake: kill useless includeStanislaw Halik
2019-02-22cmake: add -GA for MSVCStanislaw Halik
2019-02-22cmake: remove dead codeStanislaw Halik
2019-02-10cmake: use target_{compile,link}_optionsStanislaw Halik
2019-02-10cmake: small cleanupStanislaw Halik
2019-02-09cmake: wrap around for function var scopeStanislaw Halik
2019-02-09cmake: try not use leading underscore in header nameStanislaw Halik
2019-02-03proto/simconnect: fix activation context againStanislaw Halik
Issue: #804
2019-01-20cmake: drop moc and moc-* targetsStanislaw Halik
They clutter the target list in some IDEs.
2019-01-16cmake/boilerplate: add missing quotesStanislaw Halik
2019-01-16cmake: try add Visual Studio folders for boilerplate targetsStanislaw Halik
2019-01-16clang-tidy fixes onlyStanislaw Halik
Maybe global `-Wcomma' is too harsh. There should be no functional changes whatsoever.
2018-12-24cmake: decruft, disable deprecated Qt functionsStanislaw Halik
2018-12-24style/quality onlyStanislaw Halik
No functional changes. - add `override' everywhere where missing - almost pass clang's `-Wweak-vtables' - avoid some float/double conversions - remove unused private members - make signedness conversions explicit - put stuff in right namespaces to aid analysis
2018-12-24cruftStanislaw Halik
2018-12-06cruft onlyStanislaw Halik
2018-11-03fix build on LinuxStanislaw Halik
2018-10-29cmake: add target for doing only ui/moc filesStanislaw Halik
This is helpful when running under CLion, due to the lack of support for the Ninja generator.
2018-10-29cmake: add include guardsStanislaw Halik
2018-07-09cleanup onlyStanislaw Halik
2018-05-27cmake: set `self' variable in `otr_module'Stanislaw Halik
2018-05-27cmake: cleanupStanislaw Halik
2018-04-05cmake: cleanupStanislaw Halik
- OTR_MODULE_NAME now unused - _USE_MATH_DEFINES only needed for MSVC - old cruft in i18n support
2018-03-14cmake/i18n: fix GNU makeStanislaw Halik
Issue: #726 Reported by: Artem Sobolev @ljgdasfhk
2018-03-14cmake: find editbin for .sln easierStanislaw Halik
It's in the linker directory as-is.
2018-02-13cmake/i18n: workaround msbuild dependency breakageStanislaw Halik
Visual Studio runs "lrelease" targets without their "lupdate" dependencies. Add a crude workaround. Spotted by: @cpuwolf Issue: #748
2018-02-12cmake: remove otr_prop()Stanislaw Halik
It's too complex to be understood when written in CMake. Replace with explicit calls to set_property(). This hasn't been tested on OSX.
2018-01-18cmake: fix otr_module(x SUBDIRS ...)Stanislaw Halik
2018-01-18cmake: change up OPENTRACK_BASE_PATH handlingStanislaw Halik
2018-01-13cmake, main: work toward introducing alternative UIStanislaw Halik
We're going to base opentrack derivatives on the same branch. Previously merges were a living hell. Modularizing the UI code and having continuously-built executables will do a lot. First opentrack variant in progress is a TrackHat device for mouse and scrolling control for people with spine and hand/arm disabilities.
2018-01-11cmake, gui, main: make user interface reusableStanislaw Halik
The work isn't complete. We need moving out all non-reusable parts away and only keeping user interface logic in a class.
2018-01-10cmake: cleanup, decruft, probably fix mingwStanislaw Halik
2018-01-10api, cmake: use the same dynamic library prefixStanislaw Halik
2017-12-09compat: add easier translate boilerplate for non-qobjectStanislaw Halik
2017-11-02cmake: fix buildStanislaw Halik
2017-10-28cmake: stuffStanislaw Halik
2017-10-20some nonsenseStanislaw Halik
2017-10-13cmake: disable cotire for nowStanislaw Halik
2017-10-08cmake: add precompiled header generatorStanislaw Halik
cf. https://github.com/sakra/cotire
2017-10-08use "static" once, don't propagate from a macroStanislaw Halik
2017-10-02cmake: wtf, all modules need include ${CMAKE_BINARY_DIR}Stanislaw Halik
2017-09-30cmake: split i18n into own fileStanislaw Halik
2017-08-25cmake: fix typoStanislaw Halik
2017-08-25cmake: fix make clean for i18n filesStanislaw Halik
`make clean' was deleting .ts files. Thanks to @MrCapone for diagnosing this issue. Fixes: #677