summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Remove empty header src/rtvector.hVictor Westerhuis2021-12-041-1/+1
| | | | | This header has been empty since 2010. It is not installed, so it does not change the installation.
* moved source files into commit repositoryAdrian Thurston2020-03-141-1/+187
|
* cmake: restore projectKonstantin Podsvirov2019-10-231-0/+1
|
* moved the original colm src dir to /colmAdrian Thurston2019-09-081-175/+0
|
* cmake export from project directoryKonstantin Podsvirov2019-08-061-6/+8
|
* cmake export from build treeKonstantin Podsvirov2019-07-241-0/+2
|
* patch for cmake - colmKram2019-05-011-1/+1
|
* The type word_t declarationKonstantin Podsvirov2018-05-121-5/+3
| | | | | | | | If sizeof(unsigned long) == sizeof(void *) then word_t is unsigned long. Else if sizeof(unsigned long long) == sizeof(void *) then word_t is unsigned long long. Compilation checked with MSYS2 toolchains via Autotools project and with MinGW-w64 toolchains via CMake project.
* Add CMake projectKonstantin Podsvirov2018-01-291-0/+173
Now implemented: - Bootstrap `colm` program from sources; - Install target `colm::coml` and `colm::libcolm` via CMake's `colm` package. Shadow build support via CMake. Tested with MSYS2 and MinGW-w64 on Windows and with GCC on Linux. Detected issue when sizeof(word_t) < sizeof(void*).