aboutsummaryrefslogtreecommitdiffstats
path: root/tests/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Prevent incorrect cmake usagePierre Ossman2023-12-281-0/+4
| | | | | | | | | | It's a reoccurring issue that users try to build individual components by pointing cmake at a specific subdirectory, e.g. 'cmake vncviewer'. CMake, unfortunately, has insufficient protection against this so we'll need to add a manual check. This commit only adds it to the most likely places for misuse so we don't have to pollute every CMakeLists.txt.
* Split test programs to benchmarking and unit testsPierre Ossman2019-09-251-45/+4
| | | | | They have very different purpose, so make things easier to work with by having multiple directories.
* Add client support for LED state syncPierre Ossman2017-08-241-1/+3
|
* Use correct color space for current monitorPierre Ossman2017-04-281-1/+4
| | | | | | We won't always be on the primary monitor, so check which color space we're actually using right now. For offscreen stuff we assume a standard sRGB color space.
* Add alpha blending support to surfacesPierre Ossman2017-02-101-0/+3
|
* Abstract platform rendering to "surfaces"Pierre Ossman2017-02-101-5/+5
| | | | This will allow us to render more things than just the framebuffer.
* Add Fltk and Gettext include dirs when compiling testsBrian P. Hinz2017-01-081-0/+3
|
* Add test to measure framebuffer performancePierre Ossman2017-01-041-0/+17
|
* Add unit tests for getHostAndPort()Pierre Ossman2016-07-111-0/+3
|
* Add test to measure high level encoding performancePierre Ossman2015-02-131-0/+3
|
* Add test to measure decoding performancePierre Ossman2015-02-131-0/+3
|
* Add pixel conversion correctness testPierre Ossman2014-09-251-0/+3
|
* Rename the pixel conversion performance testPierre Ossman2014-09-241-2/+2
| | | | | We want to have other tests related to pixel conversion, so avoid possible naming conflicts.
* Add pixel conversion speed testPierre Ossman2014-07-041-0/+6
Add a tests directory where we can put tests programs that can be useful during testing. Start with a speed test for the pixel conversion routines.