Do not force USE_INTRINISCS to be set via source-code #234
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
One important part of #228 was unfortunatly reverted one commit later :(
The problem is, that without those line USE_INTRINSICS cannot be "unset" via the CMake option; If unset, it will be set by the code, which leads bottom line the option always set and not configurable by CMake on
Please note that USE_INTRINSICS defaults to "defined" (see CMakeLists.txt), so the behaviour is the same unless the user overrides this (and with the lines in the code he cannot override it)
Tobi