summaryrefslogtreecommitdiffhomepage
path: root/cmake/opentrack-boilerplate.cmake
AgeCommit message (Collapse)Author
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
2017-08-14cmake: preliminary support for clang with vc++ codegenStanislaw Halik
2017-08-14cmake: drop executable bit from installed normal filesStanislaw Halik
2017-08-14cmake: get lupdate/lrelease pathnamesStanislaw Halik
cf. #669
2017-08-04fixed qt binaries location for linuxDmitry
2017-07-29cmake: fix Linux buildStanislaw Halik
Issue: #661
2017-07-28cmake: fix mingw-w64 llvm buildStanislaw Halik
2017-07-16cmake: install existing i18n files when update disabledStanislaw Halik
That was never intended.
2017-06-22cmake: rename cache varStanislaw Halik
2017-06-19cmake: use DEFINE_SYMBOL target property rather than NIHStanislaw Halik
2017-06-19cmake: add cache variablesStanislaw Halik
2017-06-18cmake: random nonsenseStanislaw Halik
2017-06-07cmake: cleanupStanislaw Halik
We now inherit parent process' console. No need for the cmake cache option.
2017-05-24cmake: avoid rebuilds wrt win32 subsystemStanislaw Halik
2017-05-16cmake: fix i18n target dependenciesStanislaw Halik
The real error was on the "DEPENDS" like in boilerplate.cmake. The rest is merely removing dead code.
2017-05-16nothingStanislaw Halik
2017-05-16add otr_prop for appending property stringsStanislaw Halik
2017-05-16cmake: fix makefile dependenciesStanislaw Halik
2017-05-14Merge branch 'unstable' into unstableStanisław Halik
2017-05-12cmake: don't relink when no headers changeStanislaw Halik
This makes release builds hella fast.
2017-05-12fix linux buildSven Kocksch
2017-05-10cmake: fix var expansion for older cmake versionsStanislaw Halik
2017-05-10cmake: unbreak linker language detect for GNUStanislaw Halik
2017-05-10cmake: APPEND_STRING must have a space in frontStanislaw Halik
2017-05-03cmake: conditionalize .pdb install on MSVCStanislaw 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-03cmake: simplifyStanislaw 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.