isle icon indicating copy to clipboard operation
isle copied to clipboard

Fix `ISLE_ENTROPY_FILENAME` option in CMakeLists.txt

Open disinvite opened this issue 9 months ago • 1 comments

ISLE_ENTROPY_FILENAME selects the generated entropy filename to include for each thread of the entropy build in the CI. This is working in its current state, but it's not good CMake syntax. For one thing, it shouldn't be an option() because it's not a boolean.

disinvite avatar Mar 27 '25 01:03 disinvite

You probably want

set(ISLE_ENTROPY_FILENAME "entropy.h" CACHE STRING "Entropy header filename")

madebr avatar Apr 06 '25 19:04 madebr