Problem Background
I am trying to incorporate UnitTest into my linux-based C 17 project template. I have done this on windows pretty easily, but I am running into major issues on linux for some reason.
I used Cmake 3.21 on Windows and I am currently using CMake 3.17.5 on Linux.
I downloaded the UnitTest source code from the
CodePudding user response:
Somehow you set --target ExecutableName
, that limits the build to a single target, the main executable ExecutableName
. Try to select another target, or let it unset.