Commit graph

6 commits

Author SHA1 Message Date
1cebbd2d2c
Bug in CMakeLists.txt (signed commit)
Currently, cmake throws
```
CMake Error at CMakeLists.txt:134 (if):
  if given arguments:

    "Release" "STREQUAL" "Release" "OR"

  Unknown arguments specified
```
from here

41ec39574f/CMakeLists.txt (L134)

Fix on would be
```
if("${CMAKE_BUILD_TYPE}" STREQUAL "Release" OR "${OMP}")
```
2024-07-01 20:32:31 +02:00
ed91f1d15c
Added the option to enable OpenMP parallelization during debug 2024-06-28 11:28:34 +02:00
1330d5b262
Moved metering to a compile time option to streamline API 2024-06-24 16:31:02 +02:00
8850d525f2
Ported Header files to new coding standard. 2024-02-22 11:27:40 +01:00
395fb176c5
config-file packaging for find_package() in linking CMake projects 2024-01-22 15:28:51 +01:00
Patrick Vogler
bfa813fcb1
Initial commit 2023-06-20 13:43:33 +02:00