I am trying to build only certain modules, e.g. s2, dynamodb, and cognito from the source code. I use various settings to pass to cmake but none works.
- -DBUILD_ONLY=s3 -DBUILD_ONLY=dynamodb -DBUILD_ONLY=cognito. (Only the last one gets built.)
- -DBUILD_ONLY=s3,dynamodb,cognito. (Unrecognized module because the whole string is treaded as module name)
- -DBUILD_ONLY="s3 dynamodb cognito" (Same error.)