summaryrefslogtreecommitdiffstats
path: root/src/server/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* [BUILD] Add check for stdatomic.h supportManuel Bentele2021-06-161-0/+1
|
* [BUILD] Build picohttpparser as independent libraryManuel Bentele2021-03-111-3/+4
|
* [BUILD] Add support in CMake to validate (lint) the source codeManuel Bentele2021-03-041-17/+40
|
* [BUILD] update search paths for 'libatomic' to support build on FreeBSDManuel Bentele2020-11-231-1/+1
|
* [BUILD] add CMake find package search to find 'libatomic' automaticallyManuel Bentele2020-11-231-0/+3
|
* [BUILD] add support for atomic operations not supported by hardwareManuel Bentele2020-11-201-1/+1
| | | | | | | | | | | | | | This change links the dnbd3-server with 'libatomic' to add support for atomic operations not supported by hardware (especially 32-bit hardware architectures, such as ARM). Thus the dnbd3-server can also run on a Raspberry Pi 1 running Rasperry Pi OS. Note that the dnbd3-server is still linked to the libatomic, even if the hardware supports atomic operations. In this case, the compiler resolves atomic operations and replaces them automatically with specific built-in functions. This unnecessary linkage can be removed in the future if the GCC supports an upcoming option called automatic linking of libatomic (--enable-autolink-libatomic).
* cmake: Fix passing -Defines to ccSimon Rettberg2020-11-131-3/+3
|
* [BUILD] add build options to enable/disable build of dnbd3 componentsManuel Bentele2020-10-301-0/+1
|
* [BUILD] remove the build requirement for an unused C++ compilerManuel Bentele2020-10-271-1/+2
| | | | | This patch sets the programming languages of each CMake project to C. With this change, CMake does not search for an unused C++ compiler anymore.
* [BUILD] add CMake targets to build binary and source packages with CPackManuel Bentele2020-10-221-2/+3
| | | | | | | | | | | 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] add option to build the dnbd3-server with afl-fuzz supportManuel Bentele2020-10-201-0/+18
| | | | | The afl-fuzz support for the dnbd3-server requires an AFL C compiler like afl-gcc and can be enabled with the CMake option DNBD3_SERVER_AFL.
* [BUILD] set build type and stop Release build if repository is dirtyManuel Bentele2020-10-191-3/+0Star
|
* [BUILD] rewrite CMake build system to track changes of source filesManuel Bentele2020-10-161-0/+66
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.