Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-01 | cmake: switch to c++14 | Stanislaw Halik | |
We need std::begin/end return constant iterators for const sequences. | |||
2016-07-31 | cmake: compiler path for my convenience | Stanislaw Halik | |
2016-07-30 | cmake: disable lto partitions for mingw | Stanislaw Halik | |
It affects generated code. | |||
2016-07-30 | cmake: align functions to 16-byte boundary | Stanislaw Halik | |
Helps on recent i7. | |||
2016-07-30 | cmake: define M_PI and friends on mingw-w64 | Stanislaw Halik | |
2016-07-25 | cmake: cleanup unused var | Stanislaw Halik | |
2016-07-25 | cmake/mingw-w64: default lto gzip -9 lto stream files | Stanislaw Halik | |
Highly loaded drive slows down build otherwise. | |||
2016-07-24 | cmake, qt: add qt.conf to try fix hidpi | Stanislaw Halik | |
User confirms dpiawareness=0 fixes hidpi. | |||
2016-07-19 | cmake: fix libexec dir on linux | Stanislaw Halik | |
2016-07-19 | proto/wine: unbreak | Stanislaw Halik | |
2016-07-19 | cmake: allow only detected word size of 4 or 8 | Stanislaw Halik | |
2016-07-19 | cmake: install source code as well | Stanislaw Halik | |
2016-07-18 | cmake: adjust paths for main executable dependencies | Stanislaw Halik | |
2016-07-18 | cmake: install module stuff in ./modules/ on win32 | Stanislaw Halik | |
2016-07-18 | cmake: expose more prefixes in generated header | Stanislaw Halik | |
2016-07-18 | cmake: allow for installing a dll alongside the main executable | Stanislaw Halik | |
2016-07-16 | cmake: simplify path with no hier | Stanislaw Halik | |
2016-07-14 | cmake: cleanup unused code | Stanislaw Halik | |
2016-07-08 | cmake: don't show word size on each build | Stanislaw Halik | |
2016-07-07 | cmake: force 64-bit build on OSX unconditionally | Stanislaw Halik | |
2016-07-07 | cmake: include keyword parser at call site only | Stanislaw Halik | |
2016-07-07 | cmake: check word size | Stanislaw Halik | |
2016-07-06 | cmake: add universally good build defaults | Stanislaw Halik | |
These were in the mingw-w64 toolchain file but it's good to have them in general. | |||
2016-07-06 | cmake/rift: cmake has "else if" it turns out | Stanislaw Halik | |
2016-07-06 | gui, api, csv: support hier(7) on Unix | Stanislaw Halik | |
This affects platforms such as FreeBSD, Cygwin or Linux. | |||
2016-07-04 | cmake/mingw-w64: enable nx bit (data execution prevention) | Stanislaw Halik | |
We don't process untrusted user data but this should be the default anyway. | |||
2016-07-03 | cmake/mingw-w64: change WARNINGS_ENABLE logic | Stanislaw Halik | |
It makes sense to default for opentrack only. Depends can be messy and they will. | |||
2016-06-28 | cmake/linux: enable -fPIC | Stanislaw Halik | |
2016-06-27 | cmake/mingw-w64: fix override for all buildsopentrack-2.3-rc49p7 | Stanislaw Halik | |
2016-06-27 | cmake: allow mingw-w64 toolchain file from unix | Stanislaw Halik | |
2016-06-27 | cmake: backoff gcc 6.1.0 due to miscompilation | Stanislaw Halik | |
Issue: #375 | |||
2016-06-18 | cmake/rift: fix guard | Stanislaw Halik | |
2016-06-16 | all: split "api" into "api" and "logic" | Stanislaw Halik | |
Here, the "logic" module has all the stuff for building one's own graphical user interface. The "api" module has stuff used by other trackers. While at it, each of "api", "logic", and "compat" need their own export headers. This is because of preprocessor symbol clashes. This is all because a change in the "gui"-only dependency required a relink of all the trackers, protocols, and flters. It takes too long when building in the release configuration. With the split, only the "gui" module gets rebuilt. Since it has close to no static dependencies, it's fast enough. | |||
2016-06-14 | cmake/mingw-w64: don't copy cflags to ldflags | Stanislaw Halik | |
They get copied anyway. | |||
2016-06-14 | cmake/mingw-w64: no need for finite math only now | Stanislaw Halik | |
The `api/nan' compilation unit disables both fast math and finite math only. | |||
2016-06-14 | cmake: update mingw-w64 toolchain file | Stanislaw Halik | |
- set path for 6.1.0 from sourceforce mingw-w64 "personal builds". - set objcopy, objdump, strip - enable -fipa-pta now that it works, change some lto params - always strip for RELEASE build type - set install prefix to relative BINARY_DIR/install at first run - change some warns | |||
2016-06-14 | cmake/mingw-w64: add some warns for C units | Stanislaw Halik | |
2016-06-10 | cmake: move warnings around in mingw-w64 toolchain file | Stanislaw Halik | |
2016-06-09 | cmake: fix mingw-w64 toolchain cflags override | Stanislaw Halik | |
2016-05-23 | cmake: fix boilerplate for NO-LIBRARY + STAGE2 | Stanislaw Halik | |
2016-05-23 | cmake{/gui,}: make boilerplate usable for building the executable | Stanislaw Halik | |
2016-05-22 | cmake/{linux,mingw-w64}.cmake: inline visibility hidden is redundant | Stanislaw Halik | |
With -fvisibility=hidden it's hidden anyway. | |||
2016-05-22 | cmake: rename macros -> boilerplate | Stanislaw Halik | |
2016-05-22 | cmake: simplify, avoid macros | Stanislaw Halik | |
Avoid macros when able to allow for scope control. Macros shove everything inside the parent scope. The lone remaining macro needs to be there since functions allow for a fixed amount of parameters. Link against dinput automatically since LTO will remove it if it's not needed anyway. Rift trackers don't presently need access to ${project}-all etc. so don't expose them through opentrack_rift_boilerplate yet. | |||
2016-05-21 | cmake: add osx -g also for lto caseopentrack-2.3-rc49p1 | Stanislaw Halik | |
2016-05-17 | cmake: work for shared library destructors | Stanislaw Halik | |
Remove linker script usage. I'm worried about the potential interaction with shared libraries' _fini symbol for global destruction. Further, add -fuse-cxa-atexit in order to run the global destructors to begin with. This works on LLVM and GNU. MSVC doesn't export symbols by default. | |||
2016-05-17 | cmake: -fPIC for Linux toolchain file | Stanislaw Halik | |
2016-05-15 | Revert "cmake: remove header with version information" | Stanislaw Halik | |
It's used in the win32 installer. This reverts commit 3252beca3aa20fe5183a13029db831e4e121f6dc. | |||
2016-05-15 | cmake: stop forcing release build for appleopentrack.2.3-rc49p0 | Stanislaw Halik | |
2016-05-15 | many: remove executable bit from source files | Stanislaw Halik | |
We no longer have this recurring problem since I enabled ignoring executable bit changes on the Windows workstation. |