summaryrefslogtreecommitdiffstats
path: root/cmake/GenerateVersion.cmake
Commit message (Collapse)AuthorAgeFilesLines
* [BUILD] Fix versioning format for Docker tagsManuel Bentele2021-11-301-1/+1
|
* [BUILD] Fix build issue if version information (Git tag) is missingManuel Bentele2021-03-171-1/+1
| | | | | | | | | | | | The software version for packaging purposes is consituted from the following rules: - If the version information (from Git tags or the embedded version header file) is available, the version number for the packaging is set to those found version information. - If there isn't any version information available (e.g. missing Git tags), the version number for the packaging is set to '0.0' to represent an unkown version number.
* [BUILD] add support to locate build directory out of Git directoryManuel Bentele2020-11-131-1/+1
| | | | | This patch adds support to locate the build directory for generated artifacts out of the original checked out Git source code repository.
* [BUILD] add CMake targets to build binary and source packages with CPackManuel Bentele2020-10-221-26/+12Star
| | | | | | | | | | | This patch adds the following CMake targets - package - source to build bundeled packages. Those packages contain either all built binary artifacts or all source files for source code distribution. Both CMake targets are available in Release build configuration.
* [BUILD] do not stop Release build if repository is dirty but warnManuel Bentele2020-10-201-4/+9
|
* [BUILD] set build type and stop Release build if repository is dirtyManuel Bentele2020-10-191-4/+18
|
* [BUILD] rewrite CMake build system to track changes of source filesManuel Bentele2020-10-161-0/+15
This change restructures the source code directories, separates shared form non-shared application code and adds CMake dependencies. These dependencies allow the tracking of changes and trigger a rebuild of those build targets where changed files are involved. WARNING: Note that the support of the DNBD3_SERVER_AFL build option is not supported yet. Thus, the option should be never turned on.